GoogleCloudExtension.OauthLoginFlow.OAuthLoginFlowWindow.CancelOperation C# (CSharp) Method

CancelOperation() public method

public CancelOperation ( ) : void
return void
        public void CancelOperation()
        {
            Debug.WriteLine("The user cancelled the operation.");
            ViewModel.RefreshCode = null;
            Close();
        }

Usage Example

Exemplo n.º 1
0
 private void OnCloseCommand()
 {
     ExtensionAnalytics.ReportCommand(CommandName.OAuthFlowCancel, CommandInvocationSource.Button);
     _owner.CancelOperation();
 }
All Usage Examples Of GoogleCloudExtension.OauthLoginFlow.OAuthLoginFlowWindow::CancelOperation