次の方法で共有


OrleansClientGenericHostExtensions.UseOrleansClient メソッド

定義

オーバーロード

UseOrleansClient(HostApplicationBuilder)

Orleans クライアントをホストするようにホスト アプリ ビルダーを構成します。

UseOrleansClient(IHostApplicationBuilder)
UseOrleansClient(IHostBuilder)

Orleans クライアントをホストするようにホスト ビルダーを構成します。

UseOrleansClient(HostApplicationBuilder, Action<IClientBuilder>)

Orleans クライアントをホストするようにホスト アプリ ビルダーを構成します。

UseOrleansClient(IHostApplicationBuilder, Action<IClientBuilder>)

Orleans クライアントをホストするようにホスト アプリ ビルダーを構成します。

UseOrleansClient(IHostBuilder, Action<HostBuilderContext,IClientBuilder>)

Orleans クライアントをホストするようにホスト ビルダーを構成します。

UseOrleansClient(IHostBuilder, Action<IClientBuilder>)

Orleans クライアントをホストするようにホスト ビルダーを構成します。

UseOrleansClient(HostApplicationBuilder)

Orleans クライアントをホストするようにホスト アプリ ビルダーを構成します。

public static Microsoft.Extensions.Hosting.HostApplicationBuilder UseOrleansClient (this Microsoft.Extensions.Hosting.HostApplicationBuilder hostAppBuilder);
static member UseOrleansClient : Microsoft.Extensions.Hosting.HostApplicationBuilder -> Microsoft.Extensions.Hosting.HostApplicationBuilder
<Extension()>
Public Function UseOrleansClient (hostAppBuilder As HostApplicationBuilder) As HostApplicationBuilder

パラメーター

hostAppBuilder
HostApplicationBuilder

ホスト アプリ ビルダー。

戻り値

ホスト ビルダー。

例外

hostAppBuilder が null でした。

注釈

同じ IClientBuilder インスタンスでこのメソッドを複数回呼び出すと、1 つのクライアントが構成されます。 UseOrleans にはクライアントが自動的に含まれるため、このメソッドは HostApplicationBuilder.UseOrleans と組み合わせて使用しないでください。

適用対象

UseOrleansClient(IHostApplicationBuilder)

public static Microsoft.Extensions.Hosting.IHostApplicationBuilder UseOrleansClient (this Microsoft.Extensions.Hosting.IHostApplicationBuilder hostAppBuilder);
static member UseOrleansClient : Microsoft.Extensions.Hosting.IHostApplicationBuilder -> Microsoft.Extensions.Hosting.IHostApplicationBuilder
<Extension()>
Public Function UseOrleansClient (hostAppBuilder As IHostApplicationBuilder) As IHostApplicationBuilder

パラメーター

hostAppBuilder
IHostApplicationBuilder

ホスト アプリ ビルダー。

戻り値

ホスト ビルダー。

例外

hostAppBuilder が null でした。

注釈

同じ IClientBuilder インスタンスでこのメソッドを複数回呼び出すと、1 つのクライアントが構成されます。 UseOrleans にはクライアントが自動的に含まれるため、このメソッドを IHostApplicationBuilder.UseOrleans と組み合わせて使用しないでください。

適用対象

UseOrleansClient(IHostBuilder)

Orleans クライアントをホストするようにホスト ビルダーを構成します。

public static Microsoft.Extensions.Hosting.IHostBuilder UseOrleansClient (this Microsoft.Extensions.Hosting.IHostBuilder hostBuilder);
static member UseOrleansClient : Microsoft.Extensions.Hosting.IHostBuilder -> Microsoft.Extensions.Hosting.IHostBuilder
<Extension()>
Public Function UseOrleansClient (hostBuilder As IHostBuilder) As IHostBuilder

パラメーター

hostBuilder
IHostBuilder

ホスト ビルダー。

戻り値

ホスト ビルダー。

例外

hostBuilder が null でした。

注釈

同じ IClientBuilder インスタンスでこのメソッドを複数回呼び出すと、1 つのクライアントが構成されます。 UseOrleans にはクライアントが自動的に含まれるため、このメソッドは IHostBuilder.UseOrleans と組み合わせて使用しないでください。

適用対象

UseOrleansClient(HostApplicationBuilder, Action<IClientBuilder>)

Orleans クライアントをホストするようにホスト アプリ ビルダーを構成します。

public static Microsoft.Extensions.Hosting.HostApplicationBuilder UseOrleansClient (this Microsoft.Extensions.Hosting.HostApplicationBuilder hostAppBuilder, Action<Orleans.Hosting.IClientBuilder> configureDelegate);
static member UseOrleansClient : Microsoft.Extensions.Hosting.HostApplicationBuilder * Action<Orleans.Hosting.IClientBuilder> -> Microsoft.Extensions.Hosting.HostApplicationBuilder
<Extension()>
Public Function UseOrleansClient (hostAppBuilder As HostApplicationBuilder, configureDelegate As Action(Of IClientBuilder)) As HostApplicationBuilder

パラメーター

hostAppBuilder
HostApplicationBuilder

ホスト アプリ ビルダー。

configureDelegate
Action<IClientBuilder>

クライアントの構成に使用されるデリゲート。

戻り値

ホスト ビルダー。

例外

hostAppBuilder が null または configureDelegate null でした。

注釈

同じ IClientBuilder インスタンスでこのメソッドを複数回呼び出すと、1 つのクライアントが構成されます。 ただし、 の configureDelegate 効果は、呼び出しごとに 1 回適用されます。 UseOrleans にはクライアントが自動的に含まれるため、このメソッドは HostApplicationBuilder.UseOrleans と組み合わせて使用しないでください。

適用対象

UseOrleansClient(IHostApplicationBuilder, Action<IClientBuilder>)

Orleans クライアントをホストするようにホスト アプリ ビルダーを構成します。

public static Microsoft.Extensions.Hosting.IHostApplicationBuilder UseOrleansClient (this Microsoft.Extensions.Hosting.IHostApplicationBuilder hostAppBuilder, Action<Orleans.Hosting.IClientBuilder> configureDelegate);
static member UseOrleansClient : Microsoft.Extensions.Hosting.IHostApplicationBuilder * Action<Orleans.Hosting.IClientBuilder> -> Microsoft.Extensions.Hosting.IHostApplicationBuilder
<Extension()>
Public Function UseOrleansClient (hostAppBuilder As IHostApplicationBuilder, configureDelegate As Action(Of IClientBuilder)) As IHostApplicationBuilder

パラメーター

hostAppBuilder
IHostApplicationBuilder

ホスト アプリ ビルダー。

configureDelegate
Action<IClientBuilder>

クライアントの構成に使用されるデリゲート。

戻り値

ホスト ビルダー。

例外

hostAppBuilder が null または configureDelegate null でした。

注釈

同じ IClientBuilder インスタンスでこのメソッドを複数回呼び出すと、1 つのクライアントが構成されます。 ただし、 の configureDelegate 効果は、呼び出しごとに 1 回適用されます。 UseOrleans にはクライアントが自動的に含まれるため、このメソッドを IHostApplicationBuilder.UseOrleans と組み合わせて使用しないでください。

適用対象

UseOrleansClient(IHostBuilder, Action<HostBuilderContext,IClientBuilder>)

Orleans クライアントをホストするようにホスト ビルダーを構成します。

public static Microsoft.Extensions.Hosting.IHostBuilder UseOrleansClient (this Microsoft.Extensions.Hosting.IHostBuilder hostBuilder, Action<Microsoft.Extensions.Hosting.HostBuilderContext,Orleans.Hosting.IClientBuilder> configureDelegate);
static member UseOrleansClient : Microsoft.Extensions.Hosting.IHostBuilder * Action<Microsoft.Extensions.Hosting.HostBuilderContext, Orleans.Hosting.IClientBuilder> -> Microsoft.Extensions.Hosting.IHostBuilder
<Extension()>
Public Function UseOrleansClient (hostBuilder As IHostBuilder, configureDelegate As Action(Of HostBuilderContext, IClientBuilder)) As IHostBuilder

パラメーター

hostBuilder
IHostBuilder

ホスト ビルダー。

configureDelegate
Action<HostBuilderContext,IClientBuilder>

クライアントの構成に使用されるデリゲート。

戻り値

ホスト ビルダー。

例外

hostBuilder が null または configureDelegate null でした。

注釈

同じ IClientBuilder インスタンスでこのメソッドを複数回呼び出すと、1 つのクライアントが構成されます。 ただし、 の configureDelegate 効果は、呼び出しごとに 1 回適用されます。 UseOrleans にはクライアントが自動的に含まれるため、このメソッドは IHostBuilder.UseOrleans と組み合わせて使用しないでください。

適用対象

UseOrleansClient(IHostBuilder, Action<IClientBuilder>)

Orleans クライアントをホストするようにホスト ビルダーを構成します。

public static Microsoft.Extensions.Hosting.IHostBuilder UseOrleansClient (this Microsoft.Extensions.Hosting.IHostBuilder hostBuilder, Action<Orleans.Hosting.IClientBuilder> configureDelegate);
static member UseOrleansClient : Microsoft.Extensions.Hosting.IHostBuilder * Action<Orleans.Hosting.IClientBuilder> -> Microsoft.Extensions.Hosting.IHostBuilder
<Extension()>
Public Function UseOrleansClient (hostBuilder As IHostBuilder, configureDelegate As Action(Of IClientBuilder)) As IHostBuilder

パラメーター

hostBuilder
IHostBuilder

ホスト ビルダー。

configureDelegate
Action<IClientBuilder>

クライアントの構成に使用されるデリゲート。

戻り値

ホスト ビルダー。

例外

hostBuilder が null または configureDelegate null でした。

注釈

同じ IClientBuilder インスタンスでこのメソッドを複数回呼び出すと、1 つのクライアントが構成されます。 ただし、 の configureDelegate 効果は、呼び出しごとに 1 回適用されます。 UseOrleans にはクライアントが自動的に含まれるため、このメソッドは IHostBuilder.UseOrleans と組み合わせて使用しないでください。

適用対象