NamedPipeEndPoint Constructors
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
NamedPipeEndPoint(String) |
Initializes a new instance of the NamedPipeEndPoint class. |
NamedPipeEndPoint(String, String) |
Initializes a new instance of the NamedPipeEndPoint class. |
NamedPipeEndPoint(String)
- Source:
- NamedPipeEndPoint.cs
- Source:
- NamedPipeEndPoint.cs
Initializes a new instance of the NamedPipeEndPoint class.
public NamedPipeEndPoint (string pipeName);
new Microsoft.AspNetCore.Connections.NamedPipeEndPoint : string -> Microsoft.AspNetCore.Connections.NamedPipeEndPoint
Public Sub New (pipeName As String)
Parameters
- pipeName
- String
The name of the pipe.
Applies to
NamedPipeEndPoint(String, String)
- Source:
- NamedPipeEndPoint.cs
- Source:
- NamedPipeEndPoint.cs
Initializes a new instance of the NamedPipeEndPoint class.
public NamedPipeEndPoint (string pipeName, string serverName);
new Microsoft.AspNetCore.Connections.NamedPipeEndPoint : string * string -> Microsoft.AspNetCore.Connections.NamedPipeEndPoint
Public Sub New (pipeName As String, serverName As String)
Parameters
- pipeName
- String
The name of the pipe.
- serverName
- String
The name of the remote computer to connect to, or "." to specify the local computer.