6 writes to EndPoint
Microsoft.AspNetCore.Server.Kestrel.Core (6)
AnyIPListenOptions.cs (1)
42EndPoint = new IPEndPoint(IPAddress.Any, IPEndPoint.Port);
Internal\KestrelServerImpl.cs (2)
203options.EndPoint = await _transportManager.BindAsync(configuredEndpoint, connectionDelegate, options.EndpointConfig, onBindCancellationToken).ConfigureAwait(false); 222options.EndPoint = await _transportManager.BindAsync(configuredEndpoint, multiplexedConnectionDelegate, options, onBindCancellationToken).ConfigureAwait(false);
ListenOptions.cs (3)
27EndPoint = endPoint; 32EndPoint = new UnixDomainSocketEndPoint(socketPath); 42EndPoint = new FileHandleEndPoint(fileHandle, handleType);
11 references to EndPoint
Microsoft.AspNetCore.Server.Kestrel.Core (11)
Internal\KestrelServerImpl.cs (4)
157Trace.Http2DisabledWithHttp1AndNoTls(options.EndPoint); 161Trace.Http3DisabledWithHttp1AndNoTls(options.EndPoint); 185var configuredEndpoint = options.EndPoint; 210if (!configuredEndpoint.Equals(options.EndPoint))
ListenOptions.cs (7)
60public IPEndPoint? IPEndPoint => EndPoint as IPEndPoint; 68public string? SocketPath => (EndPoint as UnixDomainSocketEndPoint)?.ToString(); 76public string? PipeName => (EndPoint as NamedPipeEndPoint)?.PipeName.ToString(); 84public ulong FileHandle => (EndPoint as FileHandleEndPoint)?.FileHandle ?? 0; 151switch (EndPoint) 154return $"{Scheme}://unix:{EndPoint}"; 160return $"{Scheme}://{EndPoint}";