예제 #1
0
 public static int GetRoleIDFromSession()
 {
     return(GetInt(SessionEncryption.GetValueFromSession(SessionItemKey.RoleID)));
 }
예제 #2
0
 public static string GetUserNameFromSession()
 {
     return(SessionEncryption.GetValueFromSession(SessionItemKey.UserName));
 }
예제 #3
0
 public static string GetEamilAddressFromSession()
 {
     return(SessionEncryption.GetValueFromSession(SessionItemKey.EmailAddress));
 }
예제 #4
0
 public static long GetUserIdFromSession()
 {
     return(GetLong(SessionEncryption.GetValueFromSession(SessionItemKey.UserId)));
 }