Merge pull request #3809 from lateralusX/jlorenss/win-api-family-support-cleanup
[mono.git] / mcs / class / System / System.Net / HttpListener.platformnotsupported.cs
1 //
2 // System.Net.HttpListener
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.Security.Authentication.ExtendedProtection;
30 using System.Threading.Tasks;
31
32 namespace System.Net {
33         public sealed class HttpListener : IDisposable
34         {
35                 internal const string EXCEPTION_MESSAGE = "System.Net.HttpListener is not supported on the current platform.";
36
37                 public delegate ExtendedProtectionPolicy ExtendedProtectionSelector (HttpListenerRequest request);
38
39                 public HttpListener ()
40                 {
41                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
42                 }
43
44                 public AuthenticationSchemes AuthenticationSchemes {
45                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
46                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
47                 }
48
49                 public AuthenticationSchemeSelector AuthenticationSchemeSelectorDelegate {
50                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
51                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
52                 }
53
54                 public bool IgnoreWriteExceptions {
55                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
56                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
57                 }
58
59                 public bool IsListening {
60                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
61                 }
62
63                 public static bool IsSupported {
64                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
65                 }
66
67                 public HttpListenerPrefixCollection Prefixes {
68                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
69                 }
70
71                 public string Realm {
72                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
73                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
74                 }
75
76                 public bool UnsafeConnectionNtlmAuthentication {
77                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
78                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
79                 }
80
81                 public HttpListenerTimeoutManager TimeoutManager {
82                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
83                 }
84
85                 public ExtendedProtectionPolicy ExtendedProtectionPolicy
86                 {
87                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
88                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
89                 }
90
91                 public ExtendedProtectionSelector ExtendedProtectionSelectorDelegate
92                 {
93                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
94                         set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
95                 }
96
97                 public ServiceNameCollection DefaultServiceNames
98                 {
99                         get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
100                 }
101
102                 public void Abort ()
103                 {
104                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
105                 }
106
107                 public void Close ()
108                 {
109                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
110                 }
111
112                 public IAsyncResult BeginGetContext (AsyncCallback callback, Object state)
113                 {
114                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
115                 }
116
117                 public HttpListenerContext EndGetContext (IAsyncResult asyncResult)
118                 {
119                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
120                 }
121
122                 public HttpListenerContext GetContext ()
123                 {
124                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
125                 }
126
127                 public void Start ()
128                 {
129                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
130                 }
131
132                 public void Stop ()
133                 {
134                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
135                 }
136
137                 void IDisposable.Dispose ()
138                 {
139                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
140                 }
141
142                 public Task<HttpListenerContext> GetContextAsync ()
143                 {
144                         throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
145                 }
146         }
147 }