AssessmentAnywhere.Services.Users.ThreadCurrentPrincipalUser.OpenCurrentUser C# (CSharp) Method

OpenCurrentUser() public static method

public static OpenCurrentUser ( this userRepo ) : IUser
userRepo this
return IUser
        public static IUser OpenCurrentUser(this IUserRepo userRepo)
        {
            return userRepo.Open(System.Threading.Thread.CurrentPrincipal.Identity.Name);
        }
ThreadCurrentPrincipalUser