WorkflowSchedulerService コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
派生クラスとして実装された場合、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"))