다음을 통해 공유


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 instance 이 메서드를 여러 번 호출하면 하나의 클라이언트가 구성됩니다. 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 instance 이 메서드를 여러 번 호출하면 하나의 클라이언트가 구성됩니다. 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 instance 이 메서드를 여러 번 호출하면 하나의 클라이언트가 구성됩니다. 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 instance 이 메서드를 여러 번 호출하면 하나의 클라이언트가 구성됩니다. 그러나 의 효과는 configureDelegate 각 호출에 대해 한 번 적용됩니다. 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 instance 이 메서드를 여러 번 호출하면 하나의 클라이언트가 구성됩니다. 그러나 의 효과는 configureDelegate 각 호출에 대해 한 번 적용됩니다. 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 instance 이 메서드를 여러 번 호출하면 하나의 클라이언트가 구성됩니다. 그러나 의 효과는 configureDelegate 각 호출에 대해 한 번 적용됩니다. 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 instance 이 메서드를 여러 번 호출하면 하나의 클라이언트가 구성됩니다. 그러나 의 효과는 configureDelegate 각 호출에 대해 한 번 적용됩니다. UseOrleans는 클라이언트를 자동으로 포함하므로 이 메서드는 IHostBuilder.UseOrleans와 함께 사용하면 안 됩니다.

적용 대상