GoogleCloudExtension.OauthLoginFlow.OAuthLoginFlowWindow.CancelOperation C# (CSharp) Метод

CancelOperation() публичный Метод

public CancelOperation ( ) : void
Результат void
        public void CancelOperation()
        {
            Debug.WriteLine("The user cancelled the operation.");
            ViewModel.RefreshCode = null;
            Close();
        }

Usage Example

Пример #1
0
 private void OnCloseCommand()
 {
     ExtensionAnalytics.ReportCommand(CommandName.OAuthFlowCancel, CommandInvocationSource.Button);
     _owner.CancelOperation();
 }
All Usage Examples Of GoogleCloudExtension.OauthLoginFlow.OAuthLoginFlowWindow::CancelOperation