Udostępnij za pośrednictwem


WorkflowRuntime.RemoveService(Object) Metoda

Definicja

Usuwa określoną usługę z aparatu czasu wykonywania przepływu pracy.

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

Parametry

service
Object

Obiekt reprezentujący usługę do usunięcia.

Wyjątki

servicejest odwołaniem o wartości null (Nothingw Visual Basic).

Element WorkflowRuntime jest już usuwany.

Aparat czasu wykonywania przepływu pracy został uruchomiony (IsStarted jest true) i service jest podstawową usługą.

-lub- service nie jest zarejestrowany w aucie czasu wykonywania przepływu pracy.

Przykłady

W poniższym przykładzie SqlWorkflowPersistenceService element jest dodawany i usuwany z elementu 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)

Uwagi

Nie można usunąć usługi podstawowej, gdy jest uruchomiony aparat czasu wykonywania przepływu pracy (IsStarted to true). Podstawowe usługi to usługi pochodzące z WorkflowSchedulerService klasy, WorkflowCommitWorkBatchService klasy, klasy, WorkflowPersistenceService klasy lub TrackingService klasy. Jeśli service pochodzi z klasy, RemoveService wywołuje metodę WorkflowRuntimeService zaimplementowaną przez servicemetodę Stop .

Dotyczy