3 writes to CorrelatesWith
System.ServiceModel.Activities (3)
System\ServiceModel\Activities\InternalSendMessage.cs (1)
556
this.
CorrelatesWith
= new InArgument<CorrelationHandle>();
System\ServiceModel\Activities\Send.cs (1)
318
CorrelatesWith
= new InArgument<CorrelationHandle>(new ArgumentValue<CorrelationHandle> { ArgumentName = "CorrelatesWith" }),
System\ServiceModel\Activities\SendReply.cs (1)
165
this.internalSend.
CorrelatesWith
= (InArgument<CorrelationHandle>)InArgument.CreateReference(internalSendCorrelatesWith, "InternalSendCorrelatesWith");
6 references to CorrelatesWith
System.ServiceModel.Activities (6)
System\ServiceModel\Activities\InternalSendMessage.cs (6)
554
if (this.
CorrelatesWith
== null)
558
metadata.Bind(this.
CorrelatesWith
, correlatesWithArgument);
931
if (this.
CorrelatesWith
!= null)
933
correlationHandle = this.
CorrelatesWith
.Get(context);
2264
CorrelationHandle correlatesWith = (parent.
CorrelatesWith
== null) ? null : parent.
CorrelatesWith
.Get(context);