Bloom.WebLibraryIntegration.LoginDialog.SignUp C# (CSharp) Method

SignUp() public method

Adapt the dialog to use it for signup and run it. Return true if successfully signed up (or possibly logged on with an existing account).
public SignUp ( IWin32Window owner ) : bool
owner IWin32Window
return bool
        public bool SignUp(IWin32Window owner)
        {
            Settings.Default.WebUserId = _emailBox.Text = "";
            Settings.Default.WebPassword = _passwordBox.Text = "";
            SwitchToSignUp();
            if (ShowDialog(owner) == DialogResult.Cancel)
                return false;
            return true;
        }