Skip to content

Commit 784f6ff

Browse files
committed
Corrected code fencing.
1 parent 34d6fd7 commit 784f6ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

aspnetcore/grpc/interprocess-namedpipes.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The preceding example:
5050

5151
### Configuring PipeSecurity for Named Pipes
5252

53-
To customize the security of the named pipe, for example, to control which users or groups can connect, use the [`NamedPipeTransportOptions`](xref:Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.NamedPipeTransportOptions) class. This allows you to specify a custom [`PipeSecurity`](xref:System.IO.Pipes.PipeSecurity) object.
53+
To customize the security of the named pipe, for example, to control which users or groups can connect, use the [`NamedPipeTransportOptions`](xref:Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.NamedPipeTransportOptions) class. This allows a custom [`PipeSecurity`](xref:System.IO.Pipes.PipeSecurity) object to be specified.
5454

5555
Example:
5656

@@ -81,6 +81,7 @@ builder.WebHost.ConfigureKestrel(serverOptions =>
8181
});
8282
});
8383
});
84+
```
8485

8586
The preceding example:
8687

0 commit comments

Comments
 (0)