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