WorkflowSchedulerService Costruttore
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Quando viene implementato in una classe derivata, inizializza una nuova istanza della classe WorkflowSchedulerService.
protected:
WorkflowSchedulerService();
protected WorkflowSchedulerService ();
Protected Sub New ()
Esempio
Nell'esempio seguente viene illustrata la creazione di un'istanza di un oggetto SqlWorkflowPersistenceService (che eredita da WorkflowPersistenceService) e l'aggiunta dell'istanza al runtime. Questo esempio è tratto dall'esempio SDK Nested Exception Handlers incluso nel file Program.cs. Per altre informazioni, vedere Esempio di gestori di eccezioni annidati.
// A workflow is always run asychronously; the main thread waits on this event so the program
// doesn't exit before the workflow completes
workflowRuntime.AddService(new SqlWorkflowPersistenceService("Initial Catalog=SqlPersistenceService;Data Source=localhost;Integrated Security=SSPI;"));
' A workflow is always run asychronously the main thread waits on Me event so the program
' doesn't exit before the workflow completes
WorkflowRuntime.AddService(New SqlWorkflowPersistenceService("Initial Catalog=SqlPersistenceServiceData Source=localhostIntegrated Security=SSPI"))