WorkflowRuntime.RemoveService(Object) Metodo

Definizione

Rimuove il servizio specificato dal motore di runtime del flusso di lavoro.

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

Parametri

service
Object

Un oggetto che rappresenta il servizio da rimuovere.

Eccezioni

service è un riferimento null (Nothing in Visual Basic).

L'oggetto WorkflowRuntime è già stato eliminato.

Il motore di runtime del flusso di lavoro è stato avviato (IsStarted è true) e service è un servizio di base.

-oppure- service non è registrato nel motore di runtime del flusso di lavoro.

Esempio

Nell'esempio seguente SqlWorkflowPersistenceService viene aggiunto e rimosso da 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)

Commenti

Non è possibile rimuovere un servizio di base mentre il motore di runtime del flusso di lavoro è in esecuzione (IsStarted è true). I servizi di base sono servizi derivati dalle classi WorkflowSchedulerService, WorkflowCommitWorkBatchService, WorkflowPersistenceService o TrackingService. Se service deriva dalla classe WorkflowRuntimeService, RemoveService chiama il metodo Stop implementato da service.

Si applica a