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