ReviewR.Web.Services.AuthenticationResult.LoggedIn C# (CSharp) Method

LoggedIn() public static method

public static LoggedIn ( User user ) : AuthenticationResult
user ReviewR.Web.Models.Data.User
return AuthenticationResult
        public static AuthenticationResult LoggedIn(User user)
        {
            return new AuthenticationResult(AuthenticationOutcome.LoggedIn, user, new List<string>());
        }