| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- //
- // System.Web.Security.Roles
- //
- // Authors:
- // Ben Maurer ([email protected])
- //
- // (C) 2003 Ben Maurer
- //
- #if NET_1_2
- using System.Collections;
- using System.Collections.Specialized;
- using System.Text;
- namespace System.Web.Security {
- public sealed class Roles {
-
- [MonoTODO]
- public static void AddUsersToRole (string [] usernames, string rolename)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static void AddUsersToRoles (string [] usernames, string [] rolenames)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static void AddUserToRole (string username, string rolename)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static void AddUserToRoles (string username, string [] rolenames)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static void CreateRole (string rolename)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static void DeleteCookie ()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static void DeleteRole (string rolename)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static string [] GetAllRoles ()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static string [] GetRolesForUser ()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static string [] GetRolesForUser (string username)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static string [] GetUsersInRole (string rolename)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static bool IsUserInRole (string rolename)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static bool IsUserInRole (string username, string rolename)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static void RemoveUserFromRole (string username, string rolename)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static void RemoveUserFromRoles (string username, string [] rolenames)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static void RemoveUsersFromRole (string [] usernames, string rolename)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static void RemoveUsersFromRoles (string [] usernames, string [] rolenames)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static bool RoleExists (string rolename)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public static string ApplicationName {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static bool CacheRolesInCookie {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static string CookieName {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static string CookiePath {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static CookieProtection CookieProtectionValue {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static bool CookieRequireSSL {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static bool CookieSlidingExpiration {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static int CookieTimeout {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static bool Enabled {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static IRoleProvider Provider {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static RoleProviderCollection Providers {
- get { throw new NotImplementedException (); }
- }
- }
- }
- #endif
|