Microsoft.ManagementConsole.FormView.ProcessDialogKey C# (CSharp) Method

ProcessDialogKey() private method

private ProcessDialogKey ( ) : void
return void
        internal void ProcessDialogKey()
        {
            ProcessViewDialogKeyCommand command = new ProcessViewDialogKeyCommand();
            command.ViewInstanceId = base.ViewInstanceId;
            ISnapInPlatform snapInPlatform = base.SnapIn.SnapInPlatform;
            if (snapInPlatform == null)
            {
                throw new InvalidOperationException(Microsoft.ManagementConsole.Internal.Utility.LoadResourceString(Microsoft.ManagementConsole.Internal.Strings.ExceptionCommonSnapInPlatformIsNull));
            }
            snapInPlatform.ProcessCommand(command);
        }