AnonymousPipeServerStream.Unix.cs 374 B

12345678910111213
  1. namespace System.IO.Pipes
  2. {
  3. public sealed partial class AnonymousPipeServerStream
  4. {
  5. public AnonymousPipeServerStream (PipeDirection direction, HandleInheritability inheritability, int bufferSize, PipeSecurity pipeSecurity)
  6. : this (direction, inheritability, bufferSize)
  7. {
  8. if (pipeSecurity != null) {
  9. throw new PlatformNotSupportedException ();
  10. }
  11. }
  12. }
  13. }