Android Programming Press on the image to return to the main documentation page.

iFirebaseAuth

List of types:

FirebaseAuth
FirebaseUser

FirebaseAuth


Events:

SignedIn (User As FirebaseUser)
TokenAvailable (User As FirebaseUser, Success As Boolean, TokenId As String)

Members:


  CurrentUser As FirebaseUser [read only]

  GetUserTokenId (User As FirebaseUser, ForceRefresh As Boolean)

  Initialize (EventName As String)

  OpenUrl (Url As String, Data As Object, SourceApplication As String) As Boolean

  SignInWithGoogle (Page As Object)

  SignOutFromGoogle

Members description:

CurrentUser As FirebaseUser [read only]
GetUserTokenId (User As FirebaseUser, ForceRefresh As Boolean)
Retrieves the token id. This token can be sent to your backend server. The server can use it to verify the user.
The TokenAvailable event will be raised.
User - The signed in user.
ForceRefresh - Whether to force Firebase to refresh the token.
Initialize (EventName As String)
Initializes the object.
OpenUrl (Url As String, Data As Object, SourceApplication As String) As Boolean
Should be called from Application_OpenURL. Returns True if the url was handled.
SignInWithGoogle (Page As Object)
Signs in using Google.
Page - The current page.
SignOutFromGoogle
Signs out from Firebase and Google.

FirebaseUser


Events:

None

Members:


  DisplayName As String [read only]

  Email As String [read only]

  IsInitialized As Boolean

  PhotoUrl As String [read only]

  Tag As Object

  Uid As String [read only]

Members description:

DisplayName As String [read only]
Email As String [read only]
IsInitialized As Boolean
Tests whether this object was initialized.
PhotoUrl As String [read only]
Tag As Object
Gets or sets the Tag object. This is a placeholder for any object you like to tie to this object.
Uid As String [read only]

Top