mscorlib(4.0.0.0) API with additions
FileAccess.cs
2 
3 namespace System.IO
4 {
7  [Flags]
8  [ComVisible(true)]
9  public enum FileAccess
10  {
12  Read = 0x1,
14  Write = 0x2,
16  ReadWrite = 0x3
17  }
18 }
Definition: __Canon.cs:3
Read and write access to the file. Data can be written to and read from the file.
FileAccess
Defines constants for read, write, or read/write access to a file.
Definition: FileAccess.cs:9
Specifies that the class can be serialized.