1 write to PipeName
Microsoft.AspNetCore.Connections.Abstractions (1)
NamedPipeEndPoint.cs (1)
32PipeName = pipeName;
7 references to PipeName
Microsoft.AspNetCore.Connections.Abstractions (4)
NamedPipeEndPoint.cs (4)
51return $@"\\{ServerName}\pipe\{PipeName}"; 57return obj is NamedPipeEndPoint other && other.ServerName == ServerName && other.PipeName == PipeName; 63return ServerName.GetHashCode() ^ PipeName.GetHashCode();
Microsoft.AspNetCore.Server.Kestrel.Core (2)
ListenOptions.cs (2)
76public string? PipeName => (EndPoint as NamedPipeEndPoint)?.PipeName.ToString(); 156return $"{Scheme}://pipe:/{namedPipeEndPoint.PipeName}";
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (1)
Internal\NamedPipeTransportFactory.cs (1)
62throw new AddressInUseException($"Named pipe '{namedPipeEndPoint.PipeName}' is already in use.", ex);