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