public LoginPage(IBasicAuthenicator authenticator)
 {
     this.authenticator = authenticator;
     InitializeComponent();
     this.Title = "Login";
     this.ToolbarItems.Add(new ToolbarItem("Cancel", null, async() =>
     {
         authenticator.OnCancelled();
         await NavigationService.PopModalAsync();
     }));
 }
Пример #2
0
 public BasicAuthController(IBasicAuthenicator authenticator)
 {
     this.authenticator = authenticator;
 }
Пример #3
0
 public LoginPage(IBasicAuthenicator authenticator)
 {
     this.authenticator = authenticator;
     InitializeComponent();
 }