WorkflowPersistenceService Construtor
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Quando implementado em uma classe derivada, inicializa uma nova instância da classe WorkflowPersistenceService.
protected:
WorkflowPersistenceService();
protected WorkflowPersistenceService ();
Protected Sub New ()
Exemplos
O exemplo a seguir demonstra a criação de uma instância da SqlWorkflowPersistenceService
classe (derivada de WorkflowPersistenceService
). Este exemplo é do exemplo de SDK de Manipuladores de Exceção Aninhados, da classe Program.cs. Para obter mais informações, consulte o exemplo de manipuladores de exceção aninhados.
// 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"))