[System]: Add HttpListenerBasicIdentity.platformnotsupported.cs for watch. (#4836)
authorMartin Baulig <mabaul@microsoft.com>
Fri, 12 May 2017 14:33:07 +0000 (10:33 -0400)
committerGitHub <noreply@github.com>
Fri, 12 May 2017 14:33:07 +0000 (10:33 -0400)
mcs/class/System/System.Net/HttpListenerBasicIdentity.platformnotsupported.cs [new file with mode: 0644]
mcs/class/System/common.sources
mcs/class/System/common_networking.sources
mcs/class/System/monotouch_watch_System.dll.sources

diff --git a/mcs/class/System/System.Net/HttpListenerBasicIdentity.platformnotsupported.cs b/mcs/class/System/System.Net/HttpListenerBasicIdentity.platformnotsupported.cs
new file mode 100644 (file)
index 0000000..11fc32f
--- /dev/null
@@ -0,0 +1,41 @@
+//
+// HttpListenerBasicIdentity.platformnotsupported.cs
+//
+// Author:
+//       Martin Baulig <mabaul@microsoft.com>
+//
+// Copyright (c) 2017 Xamarin Inc. (http://www.xamarin.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to deal
+// in the Software without restriction, including without limitation the rights
+// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the Software is
+// furnished to do so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in
+// all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+// THE SOFTWARE.
+//
+namespace System.Net {
+       public class HttpListenerBasicIdentity {
+               internal const string EXCEPTION_MESSAGE = "System.Net.HttpListenerBasicIdentity is not supported on the current platform.";
+
+               public HttpListenerBasicIdentity (string username, string password)
+               {
+                       throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
+               }
+
+               public virtual string Password {
+                       get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
+               }
+       }
+}
+
index ff1bb18c222d2ed5cc262dfddc392b0cebfb66fb..401881140735e082f1d9850cfac9eccf0e781477 100644 (file)
@@ -50,7 +50,6 @@ System.Net/DefaultCertificatePolicy.cs
 System.Net/DigestClient.cs
 System.Net/Dns.cs
 System.Net/EndpointPermission.cs
-System.Net/HttpListenerBasicIdentity.cs
 System.Net/HttpListenerResponseHelper.cs
 System.Net/HttpRequestCreator.cs
 System.Net/HttpStreamAsyncResult.cs
index 275ed4fcc6534ea579cf79da36e160b9ba9a4a04..548180b26cb54581b23037a3fba50b27d110973b 100644 (file)
@@ -29,6 +29,7 @@ System.Net/FtpWebResponse.cs
 System.Net/HttpConnection.cs
 System.Net/HttpListener.cs
 System.Net/HttpListener.Mono.cs
+System.Net/HttpListenerBasicIdentity.cs
 System.Net/HttpListenerContext.cs
 System.Net/HttpListenerPrefixCollection.cs
 System.Net/HttpListenerRequest.cs
index 740efef1c7d5a740c884cc1c07e6f71afe6acf61..ad5e4c7bee884a6c7cc123110d6a27ecf7e6567b 100644 (file)
@@ -9,6 +9,7 @@ System.Net/FtpRequestCreator.platformnotsupported.cs
 System.Net/FtpWebRequest.platformnotsupported.cs
 System.Net/FtpWebResponse.platformnotsupported.cs
 System.Net/HttpListener.platformnotsupported.cs
+System.Net/HttpListenerBasicIdentity.platformnotsupported.cs
 System.Net/HttpListenerContext.platformnotsupported.cs
 System.Net/HttpListenerPrefixCollection.platformnotsupported.cs
 System.Net/HttpListenerRequest.platformnotsupported.cs