Udostępnij za pośrednictwem


ChannelManagerService Konstruktory

Definicja

Inicjuje nowe wystąpienie klasy ChannelManagerService.

Przeciążenia

ChannelManagerService()

Inicjuje nowe wystąpienie klasy ChannelManagerService.

ChannelManagerService(IList<ServiceEndpoint>)

Inicjuje nowe wystąpienie klasy ChannelManagerService.

ChannelManagerService(NameValueCollection)

Inicjuje nowe wystąpienie klasy ChannelManagerService.

ChannelManagerService(ChannelPoolSettings)

Inicjuje nowe wystąpienie klasy ChannelManagerService.

ChannelManagerService(ChannelPoolSettings, IList<ServiceEndpoint>)

Inicjuje nowe wystąpienie klasy ChannelManagerService.

ChannelManagerService()

Inicjuje nowe wystąpienie klasy ChannelManagerService.

public:
 ChannelManagerService();
public ChannelManagerService ();
Public Sub New ()

Przykłady

W poniższym przykładzie pokazano, jak utworzyć nowe wystąpienie ChannelManagerService obiektu. Ten przykład został dostosowany z przykładu zestawu SequentialWorkflowService SDK.

// Add ChannelManager.
ChannelManagerService channelmgr = new ChannelManagerService();
workflowRuntime.AddService(channelmgr);
' Add ChannelManager.
Dim channelmgr As New ChannelManagerService()
workflowRuntime.AddService(channelmgr)

Dotyczy

ChannelManagerService(IList<ServiceEndpoint>)

Inicjuje nowe wystąpienie klasy ChannelManagerService.

public:
 ChannelManagerService(System::Collections::Generic::IList<System::ServiceModel::Description::ServiceEndpoint ^> ^ endpoints);
public ChannelManagerService (System.Collections.Generic.IList<System.ServiceModel.Description.ServiceEndpoint> endpoints);
new System.Workflow.Runtime.Hosting.ChannelManagerService : System.Collections.Generic.IList<System.ServiceModel.Description.ServiceEndpoint> -> System.Workflow.Runtime.Hosting.ChannelManagerService
Public Sub New (endpoints As IList(Of ServiceEndpoint))

Parametry

endpoints
IList<ServiceEndpoint>

Kolekcja punktów końcowych usługi.

Przykłady

W poniższym przykładzie pokazano, jak utworzyć nowe wystąpienie ChannelManagerService obiektu. Ten przykład został dostosowany z przykładu zestawu WorkflowServiceUtility SDK.

contextFileName = localServiceHost.Description.ServiceType.Name + contextFileExtension;

// add local client endpoints
workflowRuntime = this.Description.Behaviors.Find<WorkflowRuntimeBehavior>().WorkflowRuntime;
workflowRuntime.AddService(new ChannelManagerService(localServiceHost.ClientEndpoints));

localServiceHost.Open();
contextFileName = localServiceHost.Description.ServiceType.Name & contextFileExtension

' add local client endpoints.
workflowRuntime = Me.Description.Behaviors.Find(Of WorkflowRuntimeBehavior)().WorkflowRuntime
workflowRuntime.AddService(New ChannelManagerService(localServiceHost.ClientEndpoints))

localServiceHost.Open()

Uwagi

ChannelManagerService Wystąpienia klasy są zwykle tworzone przez środowisko uruchomieniowe przy użyciu plików konfiguracji.

Punkty końcowe zdefiniowane w konstruktorze usługi będą używane do tworzenia kanałów pasujących do nazwy konfiguracji w obiekcie ChannelToken. Punkty końcowe zdefiniowane w konfiguracji mają pierwszeństwo przed punktami końcowymi zdefiniowanymi w kodzie, więc jeśli punkt końcowy usługi dodany za pomocą kodu ma taką samą nazwę i typ kontraktu jak jeden w pliku konfiguracji, punkt końcowy zdefiniowany w kodzie nie będzie używany.

Dotyczy

ChannelManagerService(NameValueCollection)

Inicjuje nowe wystąpienie klasy ChannelManagerService.

public:
 ChannelManagerService(System::Collections::Specialized::NameValueCollection ^ parameters);
public ChannelManagerService (System.Collections.Specialized.NameValueCollection parameters);
new System.Workflow.Runtime.Hosting.ChannelManagerService : System.Collections.Specialized.NameValueCollection -> System.Workflow.Runtime.Hosting.ChannelManagerService
Public Sub New (parameters As NameValueCollection)

Parametry

parameters
NameValueCollection

Parametry konfiguracji usługi.

Przykłady

W poniższym przykładzie pokazano, jak utworzyć nowe wystąpienie ChannelManagerService obiektu.

NameValueCollection parameters = new NameValueCollection();
parameters.Add("idleTimeout", TimeSpan.FromMinutes(10).ToString());
parameters.Add("leaseTimeout", TimeSpan.FromMinutes(1).ToString());
parameters.Add("maxIdleChannelsPerEndpoint", "10");
ChannelManagerService service = new ChannelManagerService(parameters);
Dim parameters As New NameValueCollection()
With parameters
    .Add("idleTimeout", TimeSpan.FromMinutes(10).ToString())
    .Add("leaseTimeout", TimeSpan.FromMinutes(1).ToString())
    .Add("maxIdleChannelsPerEndpoint", "10")
End With
Dim service As New ChannelManagerService(parameters)

Uwagi

Obsługiwane są następujące parametry:

  • idleTimeout: Maksymalna wartość TimeSpan , jaką może być w pamięci podręcznej kanał, może być bezczynna.

  • leaseTimeout: maksymalna liczba TimeSpan wyewidencjonowanych kanałów w pamięci podręcznej lub używana przez element SendActivity.

  • maxIdleChannelsPerEndpoint: maksymalna liczba bezczynnych kanałów pasujących do pojedynczego punktu końcowego, który można buforować w dowolnym momencie.

ChannelManagerService Wystąpienia klasy są zwykle tworzone przez środowisko uruchomieniowe przy użyciu plików konfiguracji.

Dotyczy

ChannelManagerService(ChannelPoolSettings)

Inicjuje nowe wystąpienie klasy ChannelManagerService.

public:
 ChannelManagerService(System::ServiceModel::Channels::ChannelPoolSettings ^ settings);
public ChannelManagerService (System.ServiceModel.Channels.ChannelPoolSettings settings);
new System.Workflow.Runtime.Hosting.ChannelManagerService : System.ServiceModel.Channels.ChannelPoolSettings -> System.Workflow.Runtime.Hosting.ChannelManagerService
Public Sub New (settings As ChannelPoolSettings)

Parametry

settings
ChannelPoolSettings

Ustawienia limity przydziału dla puli kanałów zarządzanych przez tę usługę.

Przykłady

W poniższym przykładzie pokazano, jak utworzyć nowe wystąpienie ChannelManagerService obiektu.

ChannelPoolSettings settings = new ChannelPoolSettings();
settings.IdleTimeout = TimeSpan.FromMinutes(10);
settings.LeaseTimeout = TimeSpan.FromMinutes(1);
settings.MaxOutboundChannelsPerEndpoint = 10;
ChannelManagerService service = new ChannelManagerService(settings);
Dim settings As New ChannelPoolSettings()
With settings
    .IdleTimeout = TimeSpan.FromMinutes(10)
    .LeaseTimeout = TimeSpan.FromMinutes(1)
    .MaxOutboundChannelsPerEndpoint = 10
End With
Dim service As New ChannelManagerService(settings)

Dotyczy

ChannelManagerService(ChannelPoolSettings, IList<ServiceEndpoint>)

Inicjuje nowe wystąpienie klasy ChannelManagerService.

public:
 ChannelManagerService(System::ServiceModel::Channels::ChannelPoolSettings ^ settings, System::Collections::Generic::IList<System::ServiceModel::Description::ServiceEndpoint ^> ^ endpoints);
public ChannelManagerService (System.ServiceModel.Channels.ChannelPoolSettings settings, System.Collections.Generic.IList<System.ServiceModel.Description.ServiceEndpoint> endpoints);
new System.Workflow.Runtime.Hosting.ChannelManagerService : System.ServiceModel.Channels.ChannelPoolSettings * System.Collections.Generic.IList<System.ServiceModel.Description.ServiceEndpoint> -> System.Workflow.Runtime.Hosting.ChannelManagerService
Public Sub New (settings As ChannelPoolSettings, endpoints As IList(Of ServiceEndpoint))

Parametry

settings
ChannelPoolSettings

Ustawienia limity przydziału dla puli kanałów zarządzanych przez tę usługę.

endpoints
IList<ServiceEndpoint>

Kolekcja punktów końcowych usługi.

Przykłady

W poniższym przykładzie pokazano, jak utworzyć nowe wystąpienie ChannelManagerService obiektu.

ChannelPoolSettings settings = new ChannelPoolSettings();
settings.IdleTimeout = TimeSpan.FromMinutes(10);
settings.LeaseTimeout = TimeSpan.FromMinutes(1);
settings.MaxOutboundChannelsPerEndpoint = 10;
IList<ServiceEndpoint> endpoints = new List<ServiceEndpoint>();
endpoints.Add(new ServiceEndpoint(contractDescription));
ChannelManagerService service = new ChannelManagerService(settings, endpoints);
Dim settings As New ChannelPoolSettings()
With settings
    settings.IdleTimeout = TimeSpan.FromMinutes(10)
    settings.LeaseTimeout = TimeSpan.FromMinutes(1)
    settings.MaxOutboundChannelsPerEndpoint = 10
End With
Dim endpoints As IList(Of ServiceEndpoint) = New List(Of ServiceEndpoint)()
endpoints.Add(New ServiceEndpoint(contractDescription))
Dim service As New ChannelManagerService(settings, endpoints)

Dotyczy