Skip to content

Commit 040d6f6

Browse files
committed
Kestrel named pipes
1 parent 0e000ed commit 040d6f6

File tree

1 file changed

+2
-2
lines changed
  • aspnetcore/fundamentals/servers/kestrel/endpoints/samples/KestrelNamedEP

1 file changed

+2
-2
lines changed

aspnetcore/fundamentals/servers/kestrel/endpoints/samples/KestrelNamedEP/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
{
1717
var pipeSecurity = CreatePipeSecurity(context.NamedPipeEndPoint.PipeName);
1818

19-
return NamedPipeServerStreamAcl.Create(context.NamedPipeEndPoint.PipeName,PipeDirection.InOut,
19+
return NamedPipeServerStreamAcl.Create(context.NamedPipeEndPoint.PipeName, PipeDirection.InOut,
2020
NamedPipeServerStream.MaxAllowedServerInstances, PipeTransmissionMode.Byte,
21-
PipeOptions.None, inBufferSize: 0, outBufferSize: 0, pipeSecurity);
21+
context.PipeOptions, inBufferSize: 0, outBufferSize: 0, pipeSecurity);
2222
};
2323
});
2424

0 commit comments

Comments
 (0)