NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

FileAccess Enumeration

Allows read, write, or read/write access to a file.

[Visual Basic]
Public Enum FileAccess
[C#]
public enum FileAccess
[C++]
public enum FileAccess

[JScript] In JScript, you can use the enumerations in the NGWS frameworks, but you cannot define your own.

Members

Member Name Description
Read Specifies read access to the file. Data can be read from the file and the file pointer can be moved. Combine with Write for read-write access.
ReadWrite Specifies read and write access to the file. Data can be written to the file and the file pointer can be moved. Data can also be read from the file.
Write Specifies write access to the file. Data can be written to the file and the file pointer can be moved. Combine with Read for read-write access.

Requirements

Namespace: System.IO

Assembly: mscorlib.dll

See Also

System.IO Namespace