Ejemplo n.º 1
0
        private async Task ExecuteJoinCommand()
        {
            this.User.Nickname = this.nickname;

            this.joinHelper = new JoinHelper(this.client, this.key, this.User);

            await this.joinHelper.Join();

            this.Key = this.joinHelper.Key;

            Application.Current.Properties["token"] = this.joinHelper.Token;
        }
Ejemplo n.º 2
0
        private async Task JoinSession()
        {
            if (this.Key == null)
            {
                return;
            }

            var user = this.CreateScrumMaster();

            this.joinHelper = new JoinHelper(this.client, this.Key, user);

            await this.joinHelper.Join();

            Application.Current.Properties["token"] = this.joinHelper.Token;
        }