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

Registered() public static method

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