示例#1
0
 /**
  * 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
        /**
         * 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();
        }