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