[System*] Throw a PlatformNotSupported exception when using the networking stack...
[mono.git] / mcs / class / System / System.Net / HttpListenerRequest.platformnotsupported.cs
1 //
2 // System.Net.HttpListenerRequest
3 //
4 // Author:
5 //      Rolf Bjarne Kvinge <rolf@xamarin.com>
6 //
7 // Copyright (C) 2016 Xamarin Inc (http://www.xamarin.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System.Collections.Specialized;
30 using System.IO;
31 using System.Security.Cryptography.X509Certificates;
32 using System.Text;
33 using System.Threading.Tasks;
34
35 namespace System.Net {
36         public sealed class HttpListenerRequest
37         {
38                 const string EXCEPTION_MESSAGE = "System.Net.HttpListenerRequest is not supported on the current platform.";
39
40                 HttpListenerRequest ()
41                 {
42                 }
43
44                 public string [] AcceptTypes {
45                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
46                 }
47
48                 public int ClientCertificateError {
49                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
50                 }
51
52                 public Encoding ContentEncoding {
53                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
54                 }
55
56                 public long ContentLength64 {
57                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
58                 }
59
60                 public string ContentType {
61                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
62                 }
63
64                 public CookieCollection Cookies {
65                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
66                 }
67
68                 public bool HasEntityBody {
69                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
70                 }
71
72                 public NameValueCollection Headers {
73                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
74                 }
75
76                 public string HttpMethod {
77                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
78                 }
79
80                 public Stream InputStream {
81                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
82                 }
83
84                 public bool IsAuthenticated {
85                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
86                 }
87
88                 public bool IsLocal {
89                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
90                 }
91
92                 public bool IsSecureConnection {
93                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
94                 }
95
96                 public bool KeepAlive {
97                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
98                 }
99
100                 public IPEndPoint LocalEndPoint {
101                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
102                 }
103
104                 public Version ProtocolVersion {
105                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
106                 }
107
108                 public NameValueCollection QueryString {
109                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
110                 }
111
112                 public string RawUrl {
113                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
114                 }
115
116                 public IPEndPoint RemoteEndPoint {
117                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
118                 }
119
120                 public Guid RequestTraceIdentifier {
121                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
122                 }
123
124                 public Uri Url {
125                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
126                 }
127
128                 public Uri UrlReferrer {
129                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
130                 }
131
132                 public string UserAgent {
133                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
134                 }
135
136                 public string UserHostAddress {
137                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
138                 }
139
140                 public string UserHostName {
141                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
142                 }
143
144                 public string [] UserLanguages {
145                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
146                 }
147
148                 public IAsyncResult BeginGetClientCertificate (AsyncCallback requestCallback, object state)
149                 {
150                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
151                 }
152
153                 public X509Certificate2 EndGetClientCertificate (IAsyncResult asyncResult)
154                 {
155                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
156                 }
157
158                 public X509Certificate2 GetClientCertificate ()
159                 {
160                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
161                 }
162
163                 public string ServiceName {
164                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
165                 }
166
167                 public TransportContext TransportContext {
168                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
169                 }
170
171                 public bool IsWebSocketRequest {
172                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
173                 }
174
175                 public Task<X509Certificate2> GetClientCertificateAsync ()
176                 {
177                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
178                 }
179         }
180 }