3 instantiations of FileHandleEndPoint
Microsoft.AspNetCore.Server.Kestrel.Core (1)
ListenOptions.cs (1)
42EndPoint = new FileHandleEndPoint(fileHandle, handleType);
Sockets.BindTests (2)
SocketTransportOptionsTests.cs (2)
58var endpoint = new FileHandleEndPoint((ulong)fileHandleSocket.Handle, FileHandleType.Auto); 75var endpoint = new FileHandleEndPoint((ulong)fileHandleSocket.Handle, FileHandleType.Auto);
10 references to FileHandleEndPoint
Microsoft.AspNetCore.Connections.Abstractions (2)
FileHandleEndPoint.cs (1)
15/// Initializes a new instance of <see cref="FileHandleEndPoint"/>.
FileHandleType.cs (1)
7/// Enumerates the <see cref="FileHandleEndPoint"/> types.
Microsoft.AspNetCore.Server.Kestrel.Core (3)
ListenOptions.cs (3)
82/// Only set if the <see cref="ListenOptions"/> is bound to a <see cref="FileHandleEndPoint"/>. 84public ulong FileHandle => (EndPoint as FileHandleEndPoint)?.FileHandle ?? 0; 157case FileHandleEndPoint _:
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (3)
SocketTransportFactory.cs (1)
51FileHandleEndPoint _ => true,
SocketTransportOptions.cs (2)
129case FileHandleEndPoint fileHandle: 161if (!(endpoint is FileHandleEndPoint))
Sockets.BindTests (2)
SocketTransportOptionsTests.cs (2)
58var endpoint = new FileHandleEndPoint((ulong)fileHandleSocket.Handle, FileHandleType.Auto); 75var endpoint = new FileHandleEndPoint((ulong)fileHandleSocket.Handle, FileHandleType.Auto);