mscorlib(4.0.0.0) API with additions
PipeOptions.cs
1 namespace System.IO.Pipes
2 {
5  [Flags]
6  public enum PipeOptions
7  {
9  None = 0x0,
11  WriteThrough = int.MinValue,
13  Asynchronous = 0x40000000
14  }
15 }
Indicates that a file can be used for asynchronous reading and writing.
Indicates that the system should write through any intermediate cache and go directly to disk.
PipeOptions
Provides options for creating a T:System.IO.Pipes.PipeStream object. This enumeration has a T:System....
Definition: PipeOptions.cs:6
Specifies that the class can be serialized.