|
|
@@ -26,6 +26,7 @@
|
|
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
//
|
|
|
|
|
|
+using System.Security.Authentication.ExtendedProtection;
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
namespace System.Net {
|
|
|
@@ -33,6 +34,8 @@ namespace System.Net {
|
|
|
{
|
|
|
internal const string EXCEPTION_MESSAGE = "System.Net.HttpListener is not supported on the current platform.";
|
|
|
|
|
|
+ public delegate ExtendedProtectionPolicy ExtendedProtectionSelector (HttpListenerRequest request);
|
|
|
+
|
|
|
public HttpListener ()
|
|
|
{
|
|
|
throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
|
|
|
@@ -75,6 +78,27 @@ namespace System.Net {
|
|
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
|
|
}
|
|
|
|
|
|
+ public HttpListenerTimeoutManager TimeoutManager {
|
|
|
+ get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
|
|
+ }
|
|
|
+
|
|
|
+ public ExtendedProtectionPolicy ExtendedProtectionPolicy
|
|
|
+ {
|
|
|
+ get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
|
|
+ set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
|
|
+ }
|
|
|
+
|
|
|
+ public ExtendedProtectionSelector ExtendedProtectionSelectorDelegate
|
|
|
+ {
|
|
|
+ get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
|
|
+ set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
|
|
+ }
|
|
|
+
|
|
|
+ public ServiceNameCollection DefaultServiceNames
|
|
|
+ {
|
|
|
+ get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
|
|
+ }
|
|
|
+
|
|
|
public void Abort ()
|
|
|
{
|
|
|
throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
|