4 writes to CorrelatesWith
System.ServiceModel.Activities (4)
System\ServiceModel\Activities\InternalReceiveMessage.cs (2)
56this.CorrelatesWith = new InArgument<CorrelationHandle>(context => (CorrelationHandle)null); 743this.CorrelatesWith = new InArgument<CorrelationHandle>();
System\ServiceModel\Activities\Receive.cs (1)
393CorrelatesWith = new InArgument<CorrelationHandle>(new ArgumentValue<CorrelationHandle> { ArgumentName = "CorrelatesWith" }),
System\ServiceModel\Activities\ReceiveReply.cs (1)
162this.internalReceive.CorrelatesWith = (InArgument<CorrelationHandle>)InArgument.CreateReference(resultCorrelatesWith, "ResultCorrelatesWith");
10 references to CorrelatesWith
System.ServiceModel.Activities (10)
System\ServiceModel\Activities\InternalReceiveMessage.cs (10)
194CorrelationHandle followingCorrelation = (this.CorrelatesWith == null) ? null : (CorrelationHandle)updateContext.GetValue(this.CorrelatesWith); 305CorrelationHandle followingCorrelation = (this.CorrelatesWith == null) ? null : this.CorrelatesWith.Get(executionContext); 558CorrelationHandle correlatesWithHandle = (this.CorrelatesWith == null) ? null : this.CorrelatesWith.Get(executionContext); 741if (this.CorrelatesWith == null) 745metadata.Bind(this.CorrelatesWith, correlatesWithArgument); 1072if (this.CorrelatesWith != null) 1074correlationHandle = this.CorrelatesWith.Get(context);