SimpleAuth.OAuthApi.CreateAuthenticator C# (CSharp) Method

CreateAuthenticator() protected method

protected CreateAuthenticator ( ) : WebAuthenticator
return WebAuthenticator
		protected virtual WebAuthenticator CreateAuthenticator()
		{
			authenticator.Scope = Scopes?.ToList();
			authenticator.Cookies = CurrentOAuthAccount?.Cookies;
			return authenticator;
		}
		protected async Task<bool> RefreshToken(Account accaccount)