protected virtual void WizardFormWizardPageChanging(object sender, AuthenticationWizardPageChangingEventArgs e)
        {
            if (e.NewPage != this.WizardPageId)
            {
                return;
            }

            this.ConfigureAccount();
        }
Exemplo n.º 2
0
 protected virtual void WizardFormWizardPageChanging(object sender, AuthenticationWizardPageChangingEventArgs e)
 {
     if (e.CurrentPage != this.WizardPageId)
     {
         return;
     }
     this.WaitPane.Visible  = true;
     this.ErrorPane.Visible = false;
 }
Exemplo n.º 3
0
        protected virtual void WizardFormWizardPageChanging(object sender, AuthenticationWizardPageChangingEventArgs e)
        {
            if (e.CurrentPage != this.WizardPageId)
            {
                return;
            }

            this.WizardForm.ServerProperties[Constants.ServerProperties.ClientId]     = this.ClientId.Value;
            this.WizardForm.ServerProperties[Constants.ServerProperties.ClientSecret] = this.ClientSecret.Value;
        }
        protected virtual void WizardFormWizardPageChanging(object sender, AuthenticationWizardPageChangingEventArgs e)
        {
            if (e.CurrentPage != this.WizardPageId)
            {
                return;
            }

            this.WizardForm.ServerProperties[Constants.ServerProperties.ScopeYouTube]         = this.ScopeYouTube.Checked;
            this.WizardForm.ServerProperties[Constants.ServerProperties.ScopeYouTubeForceSsl] = this.ScopeYouTubeForceSsl.Checked;
            this.WizardForm.ServerProperties[Constants.ServerProperties.ScopeYouTubeReadOnly] = this.ScopeYouTubeReadOnly.Checked;
            this.WizardForm.ServerProperties[Constants.ServerProperties.ScopeYouTubeUpload]   = this.ScopeYouTubeUpload.Checked;
            this.WizardForm.ServerProperties[Constants.ServerProperties.ScopeYouTubePartner]  = this.ScopeYouTubePartner.Checked;
        }