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