1 write to httpResponseMessage
System.ServiceModel (1)
System\ServiceModel\Channels\HttpHeadersWebHeaderCollection.cs (1)
51
this.
httpResponseMessage
= httpResponseMessage;
16 references to httpResponseMessage
System.ServiceModel (16)
System\ServiceModel\Channels\HttpHeadersWebHeaderCollection.cs (16)
113
Fx.Assert(this.
httpResponseMessage
!= null, "Either the 'httpRequestMessage' field or the 'httpResponseMessage' field should be non-null.");
114
headers = this.
httpResponseMessage
.Headers;
115
content = this.
httpResponseMessage
.Content;
138
Fx.Assert(this.
httpResponseMessage
!= null, "Either the 'httpRequestMessage' field or the 'httpResponseMessage' field should be non-null.");
139
this.
httpResponseMessage
.AddHeader(name, value);
156
Fx.Assert(this.
httpResponseMessage
!= null, "Either the 'httpRequestMessage' field or the 'httpResponseMessage' field should be non-null.");
157
this.
httpResponseMessage
.Headers.Clear();
158
content = this.
httpResponseMessage
.Content;
179
this.
httpResponseMessage
.RemoveHeader(name);
196
Fx.Assert(this.
httpResponseMessage
!= null, "Either the 'httpRequestMessage' field or the 'httpResponseMessage' field should be non-null.");
197
this.
httpResponseMessage
.SetHeader(name, value);
256
Fx.Assert(this.
httpResponseMessage
!= null, "Either the 'httpRequestMessage' field or the 'httpResponseMessage' field should be non-null.");
257
values = this.
httpResponseMessage
.GetHeader(header);
412
this.
httpResponseMessage
.Headers.Any() || (this.
httpResponseMessage
.Content != null && this.
httpResponseMessage
.Content.Headers.Any());