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:
Diffstat (limited to 'mcs/class/System/System.Net/IAuthenticationModule.cs')
-rwxr-xr-xmcs/class/System/System.Net/IAuthenticationModule.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/mcs/class/System/System.Net/IAuthenticationModule.cs b/mcs/class/System/System.Net/IAuthenticationModule.cs
deleted file mode 100755
index 15119f74da3..00000000000
--- a/mcs/class/System/System.Net/IAuthenticationModule.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-//
-// System.Net.IAuthenticationModule.cs
-//
-// Author:
-// Miguel de Icaza (miguel@ximian.com)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-
-namespace System.Net {
-
- // <remarks>
- // Authentication interface for Web client authentication modules.
- // </remarks>
- public interface IAuthenticationModule {
- string AuthenticationType {
- get;
- }
-
- bool CanPreAuthenticate {
- get;
- }
-
- bool CanRespond (string challenge);
-
- Authorization PreAuthenticate (WebRequest request, ICredentials credentials);
-
- Authorization Respond (string challenge, WebRequest request, ICredentials credentials);
- }
-}