10 references to StaticExecutionPropertyName
System.ServiceModel.Activities (10)
System\ServiceModel\Activities\CorrelationHandle.cs (1)
317return context.Properties.Find(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle;
System\ServiceModel\Activities\CorrelationScope.cs (1)
68context.Properties.Add(CorrelationHandle.StaticExecutionPropertyName, ambientHandle);
System\ServiceModel\Activities\InitializeCorrelation.cs (1)
46correlationHandle = context.Properties.Find(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle;
System\ServiceModel\Activities\InternalReceiveMessage.cs (4)
197followingCorrelation = updateContext.FindExecutionProperty(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle; 311ambientCorrelation = executionContext.Properties.Find(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle; 340ambientCorrelation = executionContext.Properties.Find(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle; 1153this.ambientCorrelation = context.Properties.Find(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle;
System\ServiceModel\Activities\InternalSendMessage.cs (2)
2274this.AmbientHandle = context.Properties.Find(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle; 2299this.AmbientHandle = context.Properties.Find(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle;
System\ServiceModel\Activities\ToReply.cs (1)
140correlatesWith = context.Properties.Find(CorrelationHandle.StaticExecutionPropertyName) as CorrelationHandle;