コード例 #1
0
ファイル: JoinDialog.cs プロジェクト: awakecoding/Screenary
 /**
  * Initial Join Session procedure. Forwards the session key information to the Authenticate Dialog
  **/
 protected void OnButtonJoinClicked(object sender, System.EventArgs e)
 {
     string sessionKey;
     sessionKey = txtSessionKey.Text;
     AuthenticateDialog authentication = new AuthenticateDialog(observer, sessionKey);
     this.Destroy();
 }
コード例 #2
0
ファイル: JoinDialog.cs プロジェクト: arif-sb/Screenary
        /**
         * Initial Join Session procedure. Forwards the session key information to the Authenticate Dialog
         **/
        protected void OnButtonJoinClicked(object sender, System.EventArgs e)
        {
            string sessionKey;

            sessionKey = txtSessionKey.Text;
            AuthenticateDialog authentication = new AuthenticateDialog(observer, sessionKey);

            this.Destroy();
        }