GitHub.Models.RepositoryHost.GetAuthenticationResultForUser C# (CSharp) Метод

GetAuthenticationResultForUser() статический приватный Метод

static private GetAuthenticationResultForUser ( UserAndScopes account ) : IObservable
account UserAndScopes
Результат IObservable
        static IObservable<AuthenticationResult> GetAuthenticationResultForUser(UserAndScopes account)
        {
            return Observable.Return(account == null ? AuthenticationResult.CredentialFailure
                : account == unverifiedUser
                    ? AuthenticationResult.VerificationFailure
                    : AuthenticationResult.Success);
        }