Factor mono_get_exception_missing_field and mono_get_exception_missin… (#9282)
[mono-project.git] / mcs / class / System.Data.Services.Client / Client_SL / System / Data / Services / Http / HttpWebResponse.cs
blobfea9f38cce234d462fb105a15bad7ca59db8bb1a
1 //Copyright 2010 Microsoft Corporation
2 //
3 //Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
4 //You may obtain a copy of the License at
5 //
6 //http://www.apache.org/licenses/LICENSE-2.0
7 //
8 //Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
9 //"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10 //See the License for the specific language governing permissions and limitations under the License.
13 namespace System.Data.Services.Http
15 using System;
16 using System.Globalization;
17 using System.IO;
19 internal abstract class HttpWebResponse : System.Data.Services.Http.WebResponse, IDisposable
21 #region Properties.
23 public abstract System.Data.Services.Http.WebHeaderCollection Headers
25 get;
28 public abstract System.Data.Services.Http.HttpWebRequest Request
30 get;
33 public abstract System.Data.Services.Http.HttpStatusCode StatusCode
35 get;
38 #endregion Properties.
40 public abstract string GetResponseHeader(string headerName);