[System*] Throw a PlatformNotSupported exception when using the networking stack...
[mono.git] / mcs / class / System.Net.Http / System.Net.Http / HttpClientHandler.platformnotsupported.cs
1 //
2 // System.Net.Http/HttpClientHandler.cs
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.Generic;
30 using System.Net.Security;
31 using System.Security.Authentication;
32 using System.Security.Cryptography.X509Certificates;
33 using System.Threading.Tasks;
34 using System.Threading;
35
36 namespace System.Net.Http
37 {
38         public class HttpClientHandler : HttpMessageHandler
39         {
40                 const string EXCEPTION_MESSAGE = "System.Net.Http.HttpClientHandler is not supported on the current platform.";
41
42                 public HttpClientHandler ()
43                 {
44                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
45                 }
46
47                 public bool AllowAutoRedirect {
48                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
49                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
50                 }
51
52                 public DecompressionMethods AutomaticDecompression {
53                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
54                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
55                 }
56
57                 public ClientCertificateOption ClientCertificateOptions {
58                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
59                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
60                 }
61
62                 public CookieContainer CookieContainer {
63                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
64                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
65                 }
66
67                 public ICredentials Credentials {
68                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
69                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
70                 }
71
72                 public int MaxAutomaticRedirections {
73                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
74                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
75                 }
76
77                 public long MaxRequestContentBufferSize {
78                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
79                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
80                 }
81
82                 public bool PreAuthenticate {
83                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
84                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
85                 }
86
87                 public IWebProxy Proxy {
88                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
89                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
90                 }
91
92                 public virtual bool SupportsAutomaticDecompression {
93                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
94                 }
95
96                 public virtual bool SupportsProxy {
97                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
98                 }
99
100                 public virtual bool SupportsRedirectConfiguration {
101                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
102                 }
103
104                 public bool UseCookies {
105                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
106                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
107                 }
108
109                 public bool UseDefaultCredentials {
110                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
111                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
112                 }
113
114                 public bool UseProxy {
115                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
116                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
117                 }
118
119                 protected override void Dispose (bool disposing)
120                 {
121                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
122                 }
123
124                 HttpResponseMessage CreateResponseMessage (HttpWebResponse wr, HttpRequestMessage requestMessage, CancellationToken cancellationToken)
125                 {
126                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
127                 }
128
129                 protected internal async override Task<HttpResponseMessage> SendAsync (HttpRequestMessage request, CancellationToken cancellationToken)
130                 {
131                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
132                 }
133
134 #if NETSTANDARD
135                 public bool CheckCertificateRevocationList {
136                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
137                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
138                 }
139
140                 public X509CertificateCollection ClientCertificates {
141                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
142                 }
143
144                 public ICredentials DefaultProxyCredentials {
145                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
146                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
147                 }
148
149                 public int MaxConnectionsPerServer {
150                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
151                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
152                 }
153
154                 public int MaxResponseHeadersLength {
155                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
156                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
157                 }
158
159                 public IDictionary<string,object> Properties {
160                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
161                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
162                 }
163
164                 public Func<HttpRequestMessage,X509Certificate2,X509Chain,SslPolicyErrors,bool> ServerCertificateCustomValidationCallback {
165                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
166                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
167                 }
168
169                 public SslProtocols SslProtocols {
170                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
171                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
172                 }
173 #endif
174         }
175 }