Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
AnonymousPipeServerStreamAcl.cs
Go to the documentation of this file.
1namespace System.IO.Pipes;
2
3public static class AnonymousPipeServerStreamAcl
4{
5 public static AnonymousPipeServerStream Create(PipeDirection direction, HandleInheritability inheritability, int bufferSize, PipeSecurity? pipeSecurity)
6 {
7 return new AnonymousPipeServerStream(direction, inheritability, bufferSize, pipeSecurity);
8 }
9}
static AnonymousPipeServerStream Create(PipeDirection direction, HandleInheritability inheritability, int bufferSize, PipeSecurity? pipeSecurity)