ServiceFakesWebHostExtensions.ListenHttpOnAnyPort(IWebHostBuilder) Method

Definition

Adds Kestrel server instance listening on the given HTTP port.

public static Microsoft.AspNetCore.Hosting.IWebHostBuilder ListenHttpOnAnyPort (this Microsoft.AspNetCore.Hosting.IWebHostBuilder builder);
static member ListenHttpOnAnyPort : Microsoft.AspNetCore.Hosting.IWebHostBuilder -> Microsoft.AspNetCore.Hosting.IWebHostBuilder
<Extension()>
Public Function ListenHttpOnAnyPort (builder As IWebHostBuilder) As IWebHostBuilder

Parameters

builder
IWebHostBuilder

An IWebHostBuilder instance.

Returns

The value of builder.

Remarks

When a concrete port is set by caller, it's not further validated if the port is really free.

Applies to