Class PersistentTokenStorage
Inheritance
System.Object
PersistentTokenStorage
Assembly: Authgear.Xamarin.dll
Syntax
public class PersistentTokenStorage : object, ITokenStorage
Methods
|
Improve this Doc
View Source
DeleteRefreshToken(String)
Declaration
public void DeleteRefreshToken(string aNamespace)
Parameters
Type |
Name |
Description |
System.String |
aNamespace |
|
|
Improve this Doc
View Source
GetRefreshTokenAsync(String)
Declaration
public async Task<string?> GetRefreshTokenAsync(string aNamespace)
Parameters
Type |
Name |
Description |
System.String |
aNamespace |
|
Returns
Type |
Description |
Task<System.Nullable<System.String>> |
|
|
Improve this Doc
View Source
SetRefreshToken(String, String)
Declaration
public void SetRefreshToken(string aNamespace, string refreshToken)
Parameters
Type |
Name |
Description |
System.String |
aNamespace |
|
System.String |
refreshToken |
|
Implements