2 instantiations of NamedPipeEndPoint
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\AddressBinder.cs (1)
126options = new ListenOptions(new NamedPipeEndPoint(parsedAddress.NamedPipeName));
KestrelServerOptions.cs (1)
634var listenOptions = new ListenOptions(new NamedPipeEndPoint(pipeName));
20 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.Server.Kestrel.Core (5)
Internal\Infrastructure\KestrelMetrics.cs (1)
351else if (localEndpoint is NamedPipeEndPoint namedPipeEndPoint)
Internal\Infrastructure\TransportManager.cs (1)
57if (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:
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (3)
AddressBinderTests.cs (3)
91Assert.IsType<NamedPipeEndPoint>(listenOptions.EndPoint); 102Assert.IsType<NamedPipeEndPoint>(listenOptions.EndPoint); 113Assert.IsType<NamedPipeEndPoint>(listenOptions.EndPoint);
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (8)
CreateNamedPipeServerStreamContext.cs (1)
17public required NamedPipeEndPoint NamedPipeEndPoint { get; init; }
Internal\NamedPipeConnection.cs (1)
37NamedPipeEndPoint endPoint,
Internal\NamedPipeConnectionListener.cs (4)
21private readonly NamedPipeEndPoint _endpoint; 35NamedPipeEndPoint endpoint, 185private readonly NamedPipeEndPoint _endpoint; 189public NamedPipeServerStreamPoolPolicy(NamedPipeEndPoint endpoint, NamedPipeTransportOptions options)
Internal\NamedPipeTransportFactory.cs (2)
39if (endpoint is not NamedPipeEndPoint namedPipeEndPoint) 72return endpoint is NamedPipeEndPoint;