次の方法で共有


WorkflowSchedulerService コンストラクター

定義

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

protected:
 WorkflowSchedulerService();
protected WorkflowSchedulerService ();
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"))

適用対象