RedisBuilderExtensions.WithHostPort Method

Definition

Configures the host port that the Redis Commander resource is exposed on instead of using randomly assigned port.

public static Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.Redis.RedisCommanderResource> WithHostPort (this Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.Redis.RedisCommanderResource> builder, int? port);
static member WithHostPort : Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.Redis.RedisCommanderResource> * Nullable<int> -> Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.Redis.RedisCommanderResource>
<Extension()>
Public Function WithHostPort (builder As IResourceBuilder(Of RedisCommanderResource), port As Nullable(Of Integer)) As IResourceBuilder(Of RedisCommanderResource)

Parameters

builder
IResourceBuilder<RedisCommanderResource>

The resource builder for Redis Commander.

port
Nullable<Int32>

The port to bind on the host. If null is used random port will be assigned.

Returns

The resource builder for PGAdmin.

Applies to