OrleansClientGenericHostExtensions.UseOrleansClient 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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 实例上多次调用此方法将导致配置一个客户端。 请注意,此方法不应与 HostApplicationBuilder.UseOrleans 结合使用,因为 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 实例上多次调用此方法将导致配置一个客户端。 请注意,此方法不应与 IHostApplicationBuilder.UseOrleans 结合使用,因为 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 实例上多次调用此方法将导致配置一个客户端。 请注意,此方法不应与 IHostBuilder.UseOrleans 结合使用,因为 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 实例上多次调用此方法将导致配置一个客户端。 但是,将为每个调用应用一次 的效果 configureDelegate
。 请注意,此方法不应与 HostApplicationBuilder.UseOrleans 结合使用,因为 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 实例上多次调用此方法将导致配置一个客户端。 但是,将为每个调用应用一次 的效果 configureDelegate
。 请注意,此方法不应与 IHostApplicationBuilder.UseOrleans 结合使用,因为 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 实例上多次调用此方法将导致配置一个客户端。 但是,将为每个调用应用一次 的效果 configureDelegate
。 请注意,此方法不应与 IHostBuilder.UseOrleans 结合使用,因为 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 实例上多次调用此方法将导致配置一个客户端。 但是,将为每个调用应用一次 的效果 configureDelegate
。 请注意,此方法不应与 IHostBuilder.UseOrleans 结合使用,因为 UseOrleans 会自动包含客户端。