WorkflowRuntime.RemoveService(Object) Método

Definição

Remove o serviço especificado do mecanismo de tempo de execução do fluxo de trabalho.

public:
 void RemoveService(System::Object ^ service);
public void RemoveService (object service);
member this.RemoveService : obj -> unit
Public Sub RemoveService (service As Object)

Parâmetros

service
Object

Um objeto que representa o serviço a ser removido.

Exceções

service é uma referência nula (Nothing no Visual Basic).

O mecanismo de tempo de execução do fluxo de trabalho foi iniciado (IsStarted é true) e service é um serviço principal.

- ou - service não está registrado com o mecanismo de tempo de execução do fluxo de trabalho.

Exemplos

No exemplo a seguir, um SqlWorkflowPersistenceService é adicionado e removido do WorkflowRuntime.

// Create a new workflow runtime
WorkflowRuntime workflowRuntime = new WorkflowRuntime();
// Create a new instance of the out-of-box SqlWorkflowPersistenceService
SqlWorkflowPersistenceService persistenceService =
   new SqlWorkflowPersistenceService(
   "Initial Catalog=SqlPersistenceService;Data Source=localhost;Integrated Security=SSPI;");
// Add the service to the runtime
workflowRuntime.AddService(persistenceService);
// Start the runtime
workflowRuntime.StartRuntime();
// Stop the runtime
workflowRuntime.StopRuntime();
// Remove the service from the runtime
workflowRuntime.RemoveService(persistenceService);
' Create a new workflow runtime
Dim workflowRuntime As New WorkflowRuntime()
' Create a new instance of the out-of-box SqlWorkflowPersistenceService
Dim persistenceService As New SqlWorkflowPersistenceService( _
   "Initial Catalog=SqlPersistenceServiceData Source=localhostIntegrated Security=SSPI")
' Add the service to the runtime
workflowRuntime.AddService(persistenceService)
' Start the runtime
workflowRuntime.StartRuntime()
' Stop the runtime
workflowRuntime.StopRuntime()
' Remove the service from the runtime
workflowRuntime.RemoveService(persistenceService)

Comentários

Não é possível remover um serviço principal enquanto o mecanismo de tempo de execução do fluxo de trabalho estiver em execução (IsStarted é true). Os principais serviços são serviços que derivam da WorkflowSchedulerService classe, da WorkflowCommitWorkBatchService classe, da WorkflowPersistenceService classe ou da TrackingService classe. Se service derivar da WorkflowRuntimeService classe, RemoveService chamará o Stop método implementado por service.

Aplica-se a