TeamMentor.CoreLib.TM_Authentication.mapUserRoles C# (CSharp) Метод

mapUserRoles() публичный Метод

public mapUserRoles ( ) : TM_Authentication
Результат TM_Authentication
        public TM_Authentication mapUserRoles()
        {
            return mapUserRoles(false);
        }

Same methods

TM_Authentication::mapUserRoles ( bool disable_Csrf_Check ) : TM_Authentication

Usage Example

 public void mapUserRoles()
 {
     TMConfig.Current = null;
     HttpContextFactory._context = null;
     var tmAuthentication = new TM_Authentication(null);
     Assert.AreEqual(tmAuthentication, tmAuthentication.mapUserRoles(false) , "This should not thrown an exception");
 }
All Usage Examples Of TeamMentor.CoreLib.TM_Authentication::mapUserRoles