public LoginPage(IBasicAuthenicator authenticator)
 {
     this.authenticator = authenticator;
     InitializeComponent();
     this.Title = "Login";
     this.ToolbarItems.Add(new ToolbarItem("Cancel", null, async() =>
     {
         authenticator.OnCancelled();
         await NavigationService.PopModalAsync();
     }));
 }
Exemplo n.º 2
0
 public BasicAuthController(IBasicAuthenicator authenticator)
 {
     this.authenticator = authenticator;
 }
Exemplo n.º 3
0
 public LoginPage(IBasicAuthenicator authenticator)
 {
     this.authenticator = authenticator;
     InitializeComponent();
 }