Example #1
0
        public void Open(GithubAuthenticationData data)
        {
            id     = data.Id;
            secret = data.Secret;

            webView.Source = data.Url;
        }
Example #2
0
 public void OpenWebviewPopup(GithubAuthenticationData data)
 {
     Webview.Show();
     Webview.Open(data);
 }
Example #3
0
        void InitializeAuthentication()
        {
            GithubAuthenticationData data = HubClient.Instance.PrepareAuthention();

            ContentView.OpenWebviewPopup(data);
        }