(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Web / System.Web.Security / Roles.cs
blob8d18302ecec78d9c458fa8857fb5b58f3016f894
1 //
2 // System.Web.Security.Roles
3 //
4 // Authors:
5 // Ben Maurer (bmaurer@users.sourceforge.net)
6 //
7 // (C) 2003 Ben Maurer
8 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 #if NET_2_0
32 using System.Collections;
33 using System.Collections.Specialized;
34 using System.Text;
36 namespace System.Web.Security {
37 public sealed class Roles {
39 [MonoTODO]
40 public static void AddUsersToRole (string [] usernames, string rolename)
42 throw new NotImplementedException ();
45 [MonoTODO]
46 public static void AddUsersToRoles (string [] usernames, string [] rolenames)
48 throw new NotImplementedException ();
51 [MonoTODO]
52 public static void AddUserToRole (string username, string rolename)
54 throw new NotImplementedException ();
57 [MonoTODO]
58 public static void AddUserToRoles (string username, string [] rolenames)
60 throw new NotImplementedException ();
63 [MonoTODO]
64 public static void CreateRole (string rolename)
66 throw new NotImplementedException ();
69 [MonoTODO]
70 public static void DeleteCookie ()
72 throw new NotImplementedException ();
75 [MonoTODO]
76 public static void DeleteRole (string rolename)
78 throw new NotImplementedException ();
81 [MonoTODO]
82 public static string [] GetAllRoles ()
84 throw new NotImplementedException ();
87 [MonoTODO]
88 public static string [] GetRolesForUser ()
90 throw new NotImplementedException ();
93 [MonoTODO]
94 public static string [] GetRolesForUser (string username)
96 throw new NotImplementedException ();
99 [MonoTODO]
100 public static string [] GetUsersInRole (string rolename)
102 throw new NotImplementedException ();
105 [MonoTODO]
106 public static bool IsUserInRole (string rolename)
108 throw new NotImplementedException ();
111 [MonoTODO]
112 public static bool IsUserInRole (string username, string rolename)
114 throw new NotImplementedException ();
117 [MonoTODO]
118 public static void RemoveUserFromRole (string username, string rolename)
120 throw new NotImplementedException ();
123 [MonoTODO]
124 public static void RemoveUserFromRoles (string username, string [] rolenames)
126 throw new NotImplementedException ();
129 [MonoTODO]
130 public static void RemoveUsersFromRole (string [] usernames, string rolename)
132 throw new NotImplementedException ();
135 [MonoTODO]
136 public static void RemoveUsersFromRoles (string [] usernames, string [] rolenames)
138 throw new NotImplementedException ();
141 [MonoTODO]
142 public static bool RoleExists (string rolename)
144 throw new NotImplementedException ();
147 [MonoTODO]
148 public static string ApplicationName {
149 get { throw new NotImplementedException (); }
150 set { throw new NotImplementedException (); }
153 [MonoTODO]
154 public static bool CacheRolesInCookie {
155 get { throw new NotImplementedException (); }
158 [MonoTODO]
159 public static string CookieName {
160 get { throw new NotImplementedException (); }
163 [MonoTODO]
164 public static string CookiePath {
165 get { throw new NotImplementedException (); }
168 [MonoTODO]
169 public static CookieProtection CookieProtectionValue {
170 get { throw new NotImplementedException (); }
173 [MonoTODO]
174 public static bool CookieRequireSSL {
175 get { throw new NotImplementedException (); }
178 [MonoTODO]
179 public static bool CookieSlidingExpiration {
180 get { throw new NotImplementedException (); }
183 [MonoTODO]
184 public static int CookieTimeout {
185 get { throw new NotImplementedException (); }
188 [MonoTODO]
189 public static bool Enabled {
190 get { throw new NotImplementedException (); }
193 [MonoTODO]
194 public static IRoleProvider Provider {
195 get { throw new NotImplementedException (); }
198 [MonoTODO]
199 public static RoleProviderCollection Providers {
200 get { throw new NotImplementedException (); }
204 #endif