1 write to SqlWorkflowInstanceStore
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Description\SqlWorkflowInstanceStoreBehavior.cs (1)
38this.SqlWorkflowInstanceStore = new SqlWorkflowInstanceStore(connectionString)
19 references to SqlWorkflowInstanceStore
System.ServiceModel.Activities (19)
System\ServiceModel\Activities\Description\SqlWorkflowInstanceStoreBehavior.cs (19)
53return this.SqlWorkflowInstanceStore.InstanceEncodingOption; 57this.SqlWorkflowInstanceStore.InstanceEncodingOption = value; 65return this.SqlWorkflowInstanceStore.InstanceCompletionAction; 69this.SqlWorkflowInstanceStore.InstanceCompletionAction = value; 77return this.SqlWorkflowInstanceStore.InstanceLockedExceptionAction; 81this.SqlWorkflowInstanceStore.InstanceLockedExceptionAction = value; 89return this.SqlWorkflowInstanceStore.ConnectionString; 93this.SqlWorkflowInstanceStore.ConnectionString = value; 101return this.SqlWorkflowInstanceStore.HostLockRenewalPeriod; 106this.SqlWorkflowInstanceStore.HostLockRenewalPeriod = value; 114return this.SqlWorkflowInstanceStore.RunnableInstancesDetectionPeriod; 119this.SqlWorkflowInstanceStore.RunnableInstancesDetectionPeriod = value; 127if (this.SqlWorkflowInstanceStore != null) 129return this.SqlWorkflowInstanceStore.MaxConnectionRetries; 138Fx.Assert(this.SqlWorkflowInstanceStore != null, "The SqlWorkflowInstanceStore should never be null"); 139if (this.SqlWorkflowInstanceStore != null) 141this.SqlWorkflowInstanceStore.MaxConnectionRetries = value; 154this.SqlWorkflowInstanceStore.Promote(name, promoteAsSqlVariant, promoteAsBinary); 172workflowServiceHost.DurableInstancingOptions.InstanceStore = this.SqlWorkflowInstanceStore;