Show / Hide Table of Contents

Class ExternalAuthServiceBase

Inheritance
object
ExternalAuthServiceBase
CodeFlowExternalAuthService
PasswordFlowExternalAuthService
Implements
IExternalAuthService
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Volo.Abp.Account.Pro.Public.MauiBlazor.OAuth
Assembly: Volo.Abp.Account.Pro.Public.MauiBlazor.dll
Syntax
public abstract class ExternalAuthServiceBase : IExternalAuthService

Constructors

ExternalAuthServiceBase(IAccessTokenStore)

Declaration
protected ExternalAuthServiceBase(IAccessTokenStore accessTokenStore)
Parameters
Type Name Description
IAccessTokenStore accessTokenStore

Fields

AuthenticationType

Declaration
protected const string AuthenticationType = "Identity.Application"
Field Value
Type Description
string

Properties

AccessTokenStore

Declaration
protected IAccessTokenStore AccessTokenStore { get; }
Property Value
Type Description
IAccessTokenStore

CurrentUser

Declaration
protected ClaimsPrincipal CurrentUser { get; set; }
Property Value
Type Description
ClaimsPrincipal

Methods

GetCurrentUser()

Declaration
public Task<ClaimsPrincipal> GetCurrentUser()
Returns
Type Description
Task<ClaimsPrincipal>

LoginAsync(LoginInput)

Declaration
public abstract Task<LoginResult> LoginAsync(LoginInput loginInput)
Parameters
Type Name Description
LoginInput loginInput
Returns
Type Description
Task<LoginResult>

SignOutAsync()

Declaration
public abstract Task SignOutAsync()
Returns
Type Description
Task

TriggerUserChanged()

Declaration
protected void TriggerUserChanged()

Events

UserChanged

Declaration
public event Action<ClaimsPrincipal> UserChanged
Event Type
Type Description
Action<ClaimsPrincipal>

Implements

IExternalAuthService
In this article
Back to top Powered by Volosoft