2 writes to CorrelationId
System.ServiceModel (2)
System\ServiceModel\MsmqIntegration\MsmqIntegrationInputMessage.cs (1)
94property.CorrelationId = MsmqMessageId.ToString(this.correlationId.Buffer);
System\ServiceModel\MsmqIntegration\MsmqMessage.cs (1)
80set { this.property.CorrelationId = value; }
3 references to CorrelationId
System.ServiceModel (3)
System\ServiceModel\MsmqIntegration\MsmqIntegrationOutputChannel.cs (2)
226if (null != property.CorrelationId) 227this.correlationId = new BufferProperty(this, UnsafeNativeMethods.PROPID_M_CORRELATIONID, MsmqMessageId.FromString(property.CorrelationId));
System\ServiceModel\MsmqIntegration\MsmqMessage.cs (1)
79get { return this.property.CorrelationId; }