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