Partager via


OrleansClientGenericHostExtensions.UseOrleansClient Méthode

Définition

Surcharges

UseOrleansClient(HostApplicationBuilder)

Configure le générateur d’application hôte pour héberger un client Orleans.

UseOrleansClient(IHostApplicationBuilder)
UseOrleansClient(IHostBuilder)

Configure le générateur d’hôte pour héberger un client Orleans.

UseOrleansClient(HostApplicationBuilder, Action<IClientBuilder>)

Configure le générateur d’application hôte pour héberger un client Orleans.

UseOrleansClient(IHostApplicationBuilder, Action<IClientBuilder>)

Configure le générateur d’application hôte pour héberger un client Orleans.

UseOrleansClient(IHostBuilder, Action<HostBuilderContext,IClientBuilder>)

Configure le générateur d’hôte pour héberger un client Orleans.

UseOrleansClient(IHostBuilder, Action<IClientBuilder>)

Configure le générateur d’hôte pour héberger un client Orleans.

UseOrleansClient(HostApplicationBuilder)

Configure le générateur d’application hôte pour héberger un client 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

Paramètres

hostAppBuilder
HostApplicationBuilder

Générateur d’application hôte.

Retours

Générateur d’hôte.

Exceptions

hostAppBuilder était null.

Remarques

L’appel de cette méthode plusieurs fois sur le même IClientBuilder instance entraîne la configuration d’un client. Notez que cette méthode ne doit pas être utilisée conjointement avec HostApplicationBuilder.UseOrleans, car UseOrleans inclut automatiquement un client.

S’applique à

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

Paramètres

hostAppBuilder
IHostApplicationBuilder

Générateur d’application hôte.

Retours

Générateur d’hôte.

Exceptions

hostAppBuilder était null.

Remarques

L’appel de cette méthode plusieurs fois sur le même IClientBuilder instance entraîne la configuration d’un client. Notez que cette méthode ne doit pas être utilisée conjointement avec IHostApplicationBuilder.UseOrleans, car UseOrleans inclut automatiquement un client.

S’applique à

UseOrleansClient(IHostBuilder)

Configure le générateur d’hôte pour héberger un client 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

Paramètres

hostBuilder
IHostBuilder

Générateur d’hôte.

Retours

Générateur d’hôte.

Exceptions

hostBuilder était null.

Remarques

L’appel de cette méthode plusieurs fois sur le même IClientBuilder instance entraîne la configuration d’un client. Notez que cette méthode ne doit pas être utilisée conjointement avec IHostBuilder.UseOrleans, car UseOrleans inclut automatiquement un client.

S’applique à

UseOrleansClient(HostApplicationBuilder, Action<IClientBuilder>)

Configure le générateur d’application hôte pour héberger un client 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

Paramètres

hostAppBuilder
HostApplicationBuilder

Générateur d’application hôte.

configureDelegate
Action<IClientBuilder>

Délégué utilisé pour configurer le client.

Retours

Générateur d’hôte.

Exceptions

hostAppBuilder était null ou configureDelegate était null.

Remarques

L’appel de cette méthode plusieurs fois sur le même IClientBuilder instance entraîne la configuration d’un client. Toutefois, les effets de configureDelegate seront appliqués une fois pour chaque appel. Notez que cette méthode ne doit pas être utilisée conjointement avec HostApplicationBuilder.UseOrleans, car UseOrleans inclut automatiquement un client.

S’applique à

UseOrleansClient(IHostApplicationBuilder, Action<IClientBuilder>)

Configure le générateur d’application hôte pour héberger un client 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

Paramètres

hostAppBuilder
IHostApplicationBuilder

Générateur d’application hôte.

configureDelegate
Action<IClientBuilder>

Délégué utilisé pour configurer le client.

Retours

Générateur d’hôte.

Exceptions

hostAppBuilder était null ou configureDelegate était null.

Remarques

L’appel de cette méthode plusieurs fois sur le même IClientBuilder instance entraîne la configuration d’un client. Toutefois, les effets de configureDelegate seront appliqués une fois pour chaque appel. Notez que cette méthode ne doit pas être utilisée conjointement avec IHostApplicationBuilder.UseOrleans, car UseOrleans inclut automatiquement un client.

S’applique à

UseOrleansClient(IHostBuilder, Action<HostBuilderContext,IClientBuilder>)

Configure le générateur d’hôte pour héberger un client 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

Paramètres

hostBuilder
IHostBuilder

Générateur d’hôte.

configureDelegate
Action<HostBuilderContext,IClientBuilder>

Délégué utilisé pour configurer le client.

Retours

Générateur d’hôte.

Exceptions

hostBuilder était null ou configureDelegate était null.

Remarques

L’appel de cette méthode plusieurs fois sur le même IClientBuilder instance entraîne la configuration d’un client. Toutefois, les effets de configureDelegate seront appliqués une fois pour chaque appel. Notez que cette méthode ne doit pas être utilisée conjointement avec IHostBuilder.UseOrleans, car UseOrleans inclut automatiquement un client.

S’applique à

UseOrleansClient(IHostBuilder, Action<IClientBuilder>)

Configure le générateur d’hôte pour héberger un client 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

Paramètres

hostBuilder
IHostBuilder

Générateur d’hôte.

configureDelegate
Action<IClientBuilder>

Délégué utilisé pour configurer le client.

Retours

Générateur d’hôte.

Exceptions

hostBuilder était null ou configureDelegate était null.

Remarques

L’appel de cette méthode plusieurs fois sur le même IClientBuilder instance entraîne la configuration d’un client. Toutefois, les effets de configureDelegate seront appliqués une fois pour chaque appel. Notez que cette méthode ne doit pas être utilisée conjointement avec IHostBuilder.UseOrleans, car UseOrleans inclut automatiquement un client.

S’applique à