X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem%2FSystem.Net%2FHttpWebRequest.platformnotsupported.cs;h=3977c7bad9c96a0bad0ae81c01931ac9a2ab4e6d;hb=5780d872ad5c32a1fcfa84c8e86af5ee73e50e9c;hp=5fc016498d277eb98522fbdfa334ff4fa096a960;hpb=166830635e6c8ed89a2da3e18d43a3251b8a6a2b;p=mono.git diff --git a/mcs/class/System/System.Net/HttpWebRequest.platformnotsupported.cs b/mcs/class/System/System.Net/HttpWebRequest.platformnotsupported.cs index 5fc016498d2..3977c7bad9c 100644 --- a/mcs/class/System/System.Net/HttpWebRequest.platformnotsupported.cs +++ b/mcs/class/System/System.Net/HttpWebRequest.platformnotsupported.cs @@ -38,11 +38,6 @@ namespace System.Net { internal const string EXCEPTION_MESSAGE = "System.Net.HttpWebRequest is not supported on the current platform."; - internal WebConnection WebConnection { - get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); } - set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); } - } - #if MOBILE public #else @@ -96,14 +91,6 @@ namespace System.Net get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); } } - internal Mono.Net.Security.IMonoTlsProvider TlsProvider { - get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); } - } - - internal Mono.Security.Interface.MonoTlsSettings TlsSettings { - get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); } - } - public X509CertificateCollection ClientCertificates { get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); } set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); } @@ -431,30 +418,5 @@ namespace System.Net { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); } - - internal void SetWriteStream (WebConnectionStream stream) - { - throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); - } - - internal void SetResponseData (WebConnectionData data) - { - throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); - } - - internal void SetResponseError (WebExceptionStatus status, Exception e, string where) - { - throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); - } - - internal bool ReuseConnection { - get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); } - set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); } - } - - internal WebConnection StoredConnection { - get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); } - set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); } - } } }