2 writes to data
System.ServiceModel (2)
System\ServiceModel\Channels\CorrelationCallbackMessageProperty.cs (2)
39
this.
data
= (CorrelationDataMessageProperty)callback.data.CreateCopy();
113
this.
data
= new CorrelationDataMessageProperty();
8 references to data
System.ServiceModel (8)
System\ServiceModel\Channels\CorrelationCallbackMessageProperty.cs (8)
37
if (callback.
data
!= null)
39
this.data = (CorrelationDataMessageProperty)callback.
data
.CreateCopy();
111
if (this.
data
== null)
115
this.
data
.Add(name, value);
136
if (this.
data
!= null && !message.Properties.ContainsKey(CorrelationDataMessageProperty.Name))
138
message.Properties[CorrelationDataMessageProperty.Name] = this.
data
;
169
if (this.
data
!= null && !message.Properties.ContainsKey(CorrelationDataMessageProperty.Name))
171
message.Properties[CorrelationDataMessageProperty.Name] = this.
data
;