1 write to instanceMetadataChanges
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Dispatcher\DurableInstanceManager.cs (1)
41
this.
instanceMetadataChanges
= new Dictionary<XName, InstanceValue>();
13 references to instanceMetadataChanges
System.ServiceModel.Activities (13)
System\ServiceModel\Activities\Dispatcher\DurableInstanceManager.cs (13)
47
this.
instanceMetadataChanges
.Add(WorkflowNamespace.WorkflowHostType, sentinel);
48
this.
instanceMetadataChanges
.Add(PersistenceMetadataNamespace.InstanceType, new InstanceValue(WorkflowNamespace.WorkflowHostType, InstanceValueOptions.WriteOnly));
110
if (this.
instanceMetadataChanges
.ContainsKey(pair.Key))
114
this.
instanceMetadataChanges
.Add(pair.Key, new InstanceValue(pair.Value, InstanceValueOptions.Optional | InstanceValueOptions.WriteOnly));
158
PersistenceProviderDirectory = new PersistenceProviderDirectory(InstanceStore, this.owner, this.
instanceMetadataChanges
, this.workflowDefinitionProvider, Host, DurableConsistencyScope.Global, maxInstances);
313
this.
instanceMetadataChanges
[WorkflowNamespace.WorkflowHostType] = new InstanceValue(Host.DurableInstancingOptions.ScopeName);
317
if (!this.
instanceMetadataChanges
.ContainsKey(WorkflowServiceNamespace.Service))
319
this.
instanceMetadataChanges
[WorkflowServiceNamespace.Service] = new InstanceValue(Host.ServiceName, InstanceValueOptions.WriteOnly | InstanceValueOptions.Optional);
348
if (virtualPathExtension != null && !this.
instanceMetadataChanges
.ContainsKey(PersistenceMetadataNamespace.ActivationType))
355
this.
instanceMetadataChanges
.Add(PersistenceMetadataNamespace.ActivationType, new InstanceValue(PersistenceMetadataNamespace.ActivationTypes.WAS, InstanceValueOptions.WriteOnly | InstanceValueOptions.Optional));
360
this.
instanceMetadataChanges
[WorkflowServiceNamespace.SiteName] = new InstanceValue(siteName, InstanceValueOptions.WriteOnly | InstanceValueOptions.Optional);
361
this.
instanceMetadataChanges
[WorkflowServiceNamespace.RelativeApplicationPath] = new InstanceValue(virtualPathExtension.ApplicationVirtualPath, InstanceValueOptions.WriteOnly | InstanceValueOptions.Optional);
366
this.
instanceMetadataChanges
[WorkflowServiceNamespace.RelativeServicePath] = new InstanceValue(relativePath, InstanceValueOptions.WriteOnly | InstanceValueOptions.Optional);