C# Class Xamarin.Auth.WebAuthenticator.WebAuthenticator

Inheritance: Authenticator
Afficher le fichier Open project: nachocove/Xamarin.Auth

Méthodes publiques

Méthode Description
ClearCookies ( ) : void

Clears all cookies.

GetInitialUrlAsync ( ) : Task

Method that returns the initial URL to be displayed in the web browser.

OnPageLoaded ( Uri url ) : void

Event handler called when a new page has been loaded in the web browser. Implementations should call Authenticator.OnSucceeded(Xamarin.Auth.Account) if this page signifies a successful authentication.

OnPageLoading ( Uri url ) : void

Event handler called when a new page is being loaded in the web browser.

Méthodes protégées

Méthode Description
GetPlatformUI ( ) : UIKit.UIViewController

Gets the UI for this authenticator.

GetPlatformUI ( Android.Content.Context context ) : UIKit.UIViewController

Gets the UI for this authenticator.

OnBrowsingCompleted ( ) : void

Raises the browsing completed event.

Method Details

ClearCookies() public static méthode

Clears all cookies.
public static ClearCookies ( ) : void
Résultat void

GetInitialUrlAsync() public abstract méthode

Method that returns the initial URL to be displayed in the web browser.
public abstract GetInitialUrlAsync ( ) : Task
Résultat Task

GetPlatformUI() protected méthode

Gets the UI for this authenticator.
protected GetPlatformUI ( ) : UIKit.UIViewController
Résultat UIKit.UIViewController

GetPlatformUI() protected méthode

Gets the UI for this authenticator.
protected GetPlatformUI ( Android.Content.Context context ) : UIKit.UIViewController
context Android.Content.Context
Résultat UIKit.UIViewController

OnBrowsingCompleted() protected méthode

Raises the browsing completed event.
protected OnBrowsingCompleted ( ) : void
Résultat void

OnPageLoaded() public abstract méthode

Event handler called when a new page has been loaded in the web browser. Implementations should call Authenticator.OnSucceeded(Xamarin.Auth.Account) if this page signifies a successful authentication.
public abstract OnPageLoaded ( Uri url ) : void
url System.Uri /// The URL of the page. ///
Résultat void

OnPageLoading() public méthode

Event handler called when a new page is being loaded in the web browser.
public OnPageLoading ( Uri url ) : void
url System.Uri /// The URL of the page. ///
Résultat void