Class TransientTokenStorage
  
  
  
  
    Inheritance
    System.Object
    TransientTokenStorage
   
  
  
  Assembly: Authgear.Xamarin.dll
  Syntax
  
    public class TransientTokenStorage : 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 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