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