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

RolePrincipal.cs « System.Web.Security « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 052d6c80282cde4d914019c9a59e8b4a61c46331 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
//
// System.Web.Security.RolePrincipal
//
// Authors:
//	Ben Maurer (bmaurer@users.sourceforge.net)
//
// (C) 2003 Ben Maurer
//

#if NET_2_0
using System.Collections;
using System.Collections.Specialized;
using System.Text;
using System.Security;
using System.Security.Principal;

namespace System.Web.Security {
	public sealed class RolePrincipal : IPrincipal {
		
		[MonoTODO]
		public RolePrincipal ()
		{
			throw new NotImplementedException ();
		}
		
		[MonoTODO]
		public RolePrincipal (bool createFromCookie)
		{
			throw new NotImplementedException ();
		}
		
		[MonoTODO]
		public RolePrincipal (string encryptedTicket)
		{
			throw new NotImplementedException ();
		}
		
		[MonoTODO]
		public string [] GetRoles ()
		{
			throw new NotImplementedException ();
		}
		
		[MonoTODO]
		public void Init ()
		{
			throw new NotImplementedException ();
		}
		
		[MonoTODO]
		public void InitFromCookie (string cookieName)
		{
			throw new NotImplementedException ();
		}
		
		[MonoTODO]
		public void InitFromEncryptedTicket (string strTicket)
		{
			throw new NotImplementedException ();
		}
		
		[MonoTODO]
		public bool IsInRole (string role)
		{
			throw new NotImplementedException ();
		}
		
		[MonoTODO]
		public string ToEncryptedTicket ()
		{
			throw new NotImplementedException ();
		}
		
		[MonoTODO]
		public bool CachedListChanged {
			get { throw new NotImplementedException (); }
		}
		
		[MonoTODO]
		public string CookiePath {
			get { throw new NotImplementedException (); }
		}
		
		[MonoTODO]
		public bool Expired {
			get { throw new NotImplementedException (); }
		}
		
		[MonoTODO]
		public DateTime ExpireDate {
			get { throw new NotImplementedException (); }
		}
		
		[MonoTODO]
		public IIdentity Identity {
			get { throw new NotImplementedException (); }
		}
		
		[MonoTODO]
		public bool IsRoleListCached {
			get { throw new NotImplementedException (); }
		}
		
		[MonoTODO]
		public DateTime IssueDate {
			get { throw new NotImplementedException (); }
		}
		
		[MonoTODO]
		public string UserData {
			get { throw new NotImplementedException (); }
		}
		
		[MonoTODO]
		public int Version {
			get { throw new NotImplementedException (); }
		}
	}
}
#endif