KestrelServerOptions.ListenHandle Method

Definition

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

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

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>

Applies to