Microsoft.Identity.Client.WindowsFormsWebAuthenticationDialog.ShowBrowser C# (CSharp) Method

ShowBrowser() public method

public ShowBrowser ( ) : void
return void
        public void ShowBrowser()
        {
            DialogResult uiResult = this.ShowDialog(this.ownerWindow);

            switch (uiResult)
            {
                case DialogResult.OK:
                    break;
                case DialogResult.Cancel:
                    this.Result = new AuthorizationResult(AuthorizationStatus.UserCancel, null);
                    break;
                default:
                    throw this.CreateExceptionForAuthenticationUiFailed(this.statusCode);
            }
        }
        /// <summary>