PipeDirection.cs 112 B

12345678910
  1. namespace System.IO.Pipes
  2. {
  3. [Serializable]
  4. public enum PipeDirection
  5. {
  6. In = 1,
  7. Out = 2,
  8. InOut = 3
  9. }
  10. }