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/corlib/System.Security.Principal/GenericIdentity.cs')
-rw-r--r--mcs/class/corlib/System.Security.Principal/GenericIdentity.cs46
1 files changed, 0 insertions, 46 deletions
diff --git a/mcs/class/corlib/System.Security.Principal/GenericIdentity.cs b/mcs/class/corlib/System.Security.Principal/GenericIdentity.cs
deleted file mode 100644
index 0b5aea58c8a..00000000000
--- a/mcs/class/corlib/System.Security.Principal/GenericIdentity.cs
+++ /dev/null
@@ -1,46 +0,0 @@
-//
-// System.Security.Principal.GenericIdentity.cs
-//
-// Author:
-// Miguel de Icaza (miguel@ximian.com)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-
-namespace System.Security.Principal {
-
- [Serializable]
- public class GenericIdentity : IIdentity {
- string user_name;
- string authentication_type;
-
- public GenericIdentity (string user_name, string authentication_type)
- {
- this.user_name = user_name;
- this.authentication_type = authentication_type;
- }
-
- public GenericIdentity (string name)
- {
- this.user_name = user_name;
- }
-
- public virtual string AuthenticationType {
- get {
- return authentication_type;
- }
- }
-
- public virtual string Name {
- get {
- return user_name;
- }
- }
-
- public virtual bool IsAuthenticated {
- get {
- return true;
- }
- }
- }
-}