1 write to httpWebResponse
System.Data.Services.Client (1)
System\Data\Services\Client\QueryResult.cs (1)
441this.httpWebResponse = response;
11 references to httpWebResponse
System.Data.Services.Client (11)
System\Data\Services\Client\QueryResult.cs (11)
235using (Stream stream = this.httpWebResponse.GetResponseStream()) 288if (this.httpWebResponse != null) 290Dictionary<string, string> headers = WebUtil.WrapResponseHeaders(this.httpWebResponse); 292response.StatusCode = (int)this.httpWebResponse.StatusCode; 307if (this.httpWebResponse != null) 309Dictionary<string, string> headers = WebUtil.WrapResponseHeaders(this.httpWebResponse); 311response.StatusCode = (int)this.httpWebResponse.StatusCode; 379Debug.Assert(null != this.httpWebResponse || null != this.Failure, "should have response or exception"); 380if (null != this.httpWebResponse) 383this.httpWebResponse.Close(); 385Exception ex = DataServiceContext.HandleResponse(this.StatusCode, this.httpWebResponse.Headers[XmlConstants.HttpDataServiceVersion], this.GetResponseStream, false);