WorkflowPersistenceService コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
派生クラスとして実装された場合、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"))
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET