次の方法で共有


WorkflowPersistenceService コンストラクター

定義

派生クラスとして実装された場合、WorkflowPersistenceService クラスの新しいインスタンスを初期化します。

protected:
 WorkflowPersistenceService();
protected WorkflowPersistenceService ();
Protected Sub New ()

SqlWorkflowPersistenceService から派生した WorkflowPersistenceService クラスのインスタンスを作成する例を次に示します。 この例は、Program.cs クラスに含まれている、入れ子にされた例外ハンドラーを示す SDK サンプルです。 詳細については、「 入れ子になった例外ハンドラーのサンプル」を参照してください。

// 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"))

適用対象