KestrelServerOptions.ListenHandle Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ListenHandle(UInt64) |
Open a socket file descriptor. |
ListenHandle(UInt64, Action<ListenOptions>) |
Open a socket file descriptor. The callback configures endpoint-specific settings. |
ListenHandle(UInt64)
- Source:
- KestrelServerOptions.cs
- Source:
- KestrelServerOptions.cs
- Source:
- KestrelServerOptions.cs
Open a socket file descriptor.
public:
void ListenHandle(System::UInt64 handle);
public void ListenHandle (ulong handle);
member this.ListenHandle : uint64 -> unit
Public Sub ListenHandle (handle As ULong)
Parameters
- handle
- UInt64
Applies to
ListenHandle(UInt64, Action<ListenOptions>)
- Source:
- KestrelServerOptions.cs
- Source:
- KestrelServerOptions.cs
- Source:
- KestrelServerOptions.cs
Open a socket file descriptor. The callback configures endpoint-specific settings.
public:
void ListenHandle(System::UInt64 handle, Action<Microsoft::AspNetCore::Server::Kestrel::Core::ListenOptions ^> ^ configure);
public void ListenHandle (ulong handle, Action<Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions> configure);
member this.ListenHandle : uint64 * Action<Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions> -> unit
Public Sub ListenHandle (handle As ULong, configure As Action(Of ListenOptions))
Parameters
- handle
- UInt64
- configure
- Action<ListenOptions>