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/Authorization.cs')
-rwxr-xr-xmcs/class/System/System.Net/Authorization.cs52
1 files changed, 0 insertions, 52 deletions
diff --git a/mcs/class/System/System.Net/Authorization.cs b/mcs/class/System/System.Net/Authorization.cs
deleted file mode 100755
index 1c21c85f0bc..00000000000
--- a/mcs/class/System/System.Net/Authorization.cs
+++ /dev/null
@@ -1,52 +0,0 @@
-//
-// System.Net.Authorization.cs
-//
-// Author:
-// Miguel de Icaza (miguel@ximian.com)
-// Lawrence Pit (loz@cable.a2000.nl)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-
-namespace System.Net {
-
- public class Authorization {
- string token;
- bool complete;
- string connectionGroupId;
- string [] protectionRealm;
-
- public Authorization (string token) : this (token, true)
- {
- }
-
- public Authorization (string token, bool complete)
- : this (token, complete, null)
- {
- }
-
- public Authorization (string token, bool complete, string connectionGroupId)
- {
- this.token = token;
- this.complete = complete;
- this.connectionGroupId = connectionGroupId;
- }
-
- public string Message {
- get { return token; }
- }
-
- public bool Complete {
- get { return complete; }
- }
-
- public string ConnectionGroupId {
- get { return connectionGroupId; }
- }
-
- public string[] ProtectionRealm {
- get { return protectionRealm; }
- set { protectionRealm = value; }
- }
- }
-}