1 write to ServerName
Microsoft.AspNetCore.Connections.Abstractions (1)
NamedPipeEndPoint.cs (1)
31
ServerName
= serverName;
6 references to ServerName
Microsoft.AspNetCore.Connections.Abstractions (4)
NamedPipeEndPoint.cs (4)
51
return $@"\\{
ServerName
}\pipe\{PipeName}";
57
return obj is NamedPipeEndPoint other && other.
ServerName
==
ServerName
&& other.PipeName == PipeName;
63
return
ServerName
.GetHashCode() ^ PipeName.GetHashCode();
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (2)
Internal\NamedPipeTransportFactory.cs (2)
43
if (namedPipeEndPoint.
ServerName
!= LocalComputerServerName)
45
throw new NotSupportedException($@"Server name '{namedPipeEndPoint.
ServerName
}' is invalid. The server name must be ""{LocalComputerServerName}"".");