2 instantiations of NamedPipeEndPoint
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\AddressBinder.cs (1)
126options = new ListenOptions(new NamedPipeEndPoint(parsedAddress.NamedPipeName));
KestrelServerOptions.cs (1)
638var listenOptions = new ListenOptions(new NamedPipeEndPoint(pipeName));
11 references to NamedPipeEndPoint
Microsoft.AspNetCore.Connections.Abstractions (4)
NamedPipeEndPoint.cs (4)
17/// Initializes a new instance of the <see cref="NamedPipeEndPoint"/> class. 25/// Initializes a new instance of the <see cref="NamedPipeEndPoint"/> class. 46/// Gets the pipe name represented by this <see cref="NamedPipeEndPoint"/> instance. 57return obj is NamedPipeEndPoint other && other.ServerName == ServerName && other.PipeName == PipeName;
Microsoft.AspNetCore.Http.Connections (1)
src\aspnetcore\src\Shared\ConnectionEndpointTags.cs (1)
79else if (localEndpoint is NamedPipeEndPoint namedPipeEndPoint)
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Infrastructure\TransportManager.cs (1)
56if (endPoint is NamedPipeEndPoint && !OperatingSystem.IsWindows())
ListenOptions.cs (3)
74/// Only set if the <see cref="ListenOptions"/> is bound to a <see cref="NamedPipeEndPoint"/>. 76public string? PipeName => (EndPoint as NamedPipeEndPoint)?.PipeName.ToString(); 155case NamedPipeEndPoint namedPipeEndPoint:
src\aspnetcore\src\Shared\ConnectionEndpointTags.cs (1)
79else if (localEndpoint is NamedPipeEndPoint namedPipeEndPoint)
Microsoft.AspNetCore.SignalR.Core (1)
src\aspnetcore\src\Shared\ConnectionEndpointTags.cs (1)
79else if (localEndpoint is NamedPipeEndPoint namedPipeEndPoint)