Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2017-02-15 21:53:59 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2017-02-15 21:53:59 +0300
commit75702b65c9bed2b517ebfe698636ab0f448621df (patch)
tree48ecb7ce598917c6d882f56ab0144f3892d930cb /mcs/class/System.Net.Http
parentb50ac20959875cbae315d223aff897d6417ef4dc (diff)
[bcl] Remove the NETSTANDARD ifdef from profiles
We're always using the code now and will deal with the differences to .NET 4.x by producing reference assemblies.
Diffstat (limited to 'mcs/class/System.Net.Http')
-rw-r--r--mcs/class/System.Net.Http/System.Net.Http/HttpClientHandler.cs3
-rw-r--r--mcs/class/System.Net.Http/System.Net.Http/HttpClientHandler.platformnotsupported.cs2
2 files changed, 0 insertions, 5 deletions
diff --git a/mcs/class/System.Net.Http/System.Net.Http/HttpClientHandler.cs b/mcs/class/System.Net.Http/System.Net.Http/HttpClientHandler.cs
index e1cd94a05a4..4aeaf50cd93 100644
--- a/mcs/class/System.Net.Http/System.Net.Http/HttpClientHandler.cs
+++ b/mcs/class/System.Net.Http/System.Net.Http/HttpClientHandler.cs
@@ -402,7 +402,6 @@ namespace System.Net.Http
return CreateResponseMessage (wresponse, request, cancellationToken);
}
-#if NETSTANDARD
public bool CheckCertificateRevocationList {
get {
throw new NotImplementedException ();
@@ -468,7 +467,5 @@ namespace System.Net.Http
throw new NotImplementedException ();
}
}
-
-#endif
}
}
diff --git a/mcs/class/System.Net.Http/System.Net.Http/HttpClientHandler.platformnotsupported.cs b/mcs/class/System.Net.Http/System.Net.Http/HttpClientHandler.platformnotsupported.cs
index eb5b7ffa820..f796a202d54 100644
--- a/mcs/class/System.Net.Http/System.Net.Http/HttpClientHandler.platformnotsupported.cs
+++ b/mcs/class/System.Net.Http/System.Net.Http/HttpClientHandler.platformnotsupported.cs
@@ -131,7 +131,6 @@ namespace System.Net.Http
throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
}
-#if NETSTANDARD
public bool CheckCertificateRevocationList {
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
@@ -170,6 +169,5 @@ namespace System.Net.Http
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
}
-#endif
}
}