ApplicationBuilderExtensions.UseNamedPipes Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
UseNamedPipes(IApplicationBuilder, String, String) |
Enables named pipes for this application. |
UseNamedPipes(IApplicationBuilder, String, String, String, String) |
Enables named pipes for this application. |
UseNamedPipes(IApplicationBuilder, String, String)
Enables named pipes for this application.
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseNamedPipes (this Microsoft.AspNetCore.Builder.IApplicationBuilder applicationBuilder, string pipeName = "bfv4.pipes", string audience = default);
static member UseNamedPipes : Microsoft.AspNetCore.Builder.IApplicationBuilder * string * string -> Microsoft.AspNetCore.Builder.IApplicationBuilder
<Extension()>
Public Function UseNamedPipes (applicationBuilder As IApplicationBuilder, Optional pipeName As String = "bfv4.pipes", Optional audience As String = Nothing) As IApplicationBuilder
Parameters
- applicationBuilder
- IApplicationBuilder
The application builder that defines the bot's pipeline.IApplicationBuilder.
- pipeName
- String
The name of the named pipe to use when creating the server.
- audience
- String
The specified recipient of all outgoing activities.
Returns
A reference to this instance after the operation has completed.
Applies to
UseNamedPipes(IApplicationBuilder, String, String, String, String)
Enables named pipes for this application.
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseNamedPipes (this Microsoft.AspNetCore.Builder.IApplicationBuilder applicationBuilder, string pipeName, string audience, string appId, string callerId);
static member UseNamedPipes : Microsoft.AspNetCore.Builder.IApplicationBuilder * string * string * string * string -> Microsoft.AspNetCore.Builder.IApplicationBuilder
<Extension()>
Public Function UseNamedPipes (applicationBuilder As IApplicationBuilder, pipeName As String, audience As String, appId As String, callerId As String) As IApplicationBuilder
Parameters
- applicationBuilder
- IApplicationBuilder
The application builder that defines the bot's pipeline.IApplicationBuilder.
- pipeName
- String
The name of the named pipe to use when creating the server.
- audience
- String
The specified recipient of all outgoing activities.
- appId
- String
The bot's application id.
- callerId
- String
The caller id.
Returns
A reference to this instance after the operation has completed.