WorkflowPersistenceService Oluşturucu
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Türetilmiş bir sınıfta uygulandığında, sınıfının yeni bir örneğini WorkflowPersistenceService başlatır.
protected:
WorkflowPersistenceService();
protected WorkflowPersistenceService ();
Protected Sub New ()
Örnekler
Aşağıdaki örnekte sınıfının (öğesinden WorkflowPersistenceService
türetilmiş) bir örneğinin SqlWorkflowPersistenceService
oluşturulması gösterilmektedir. Bu örnek, Program.cs sınıfından İç İçe Özel Durum İşleyicileri SDK örneğinden alınıyor. Daha fazla bilgi için bkz. İç İçe Özel Durum İşleyicileri Örneği.
// 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"))