Microsoft.ManagementConsole.View.ThrowIfShutdown C# (CSharp) Method

ThrowIfShutdown() private method

private ThrowIfShutdown ( string viewOperation ) : void
viewOperation string
return void
        internal void ThrowIfShutdown(string viewOperation)
        {
            if (this._shutdown)
            {
                throw Microsoft.ManagementConsole.Internal.Utility.CreateClassShutdownException("View", viewOperation);
            }
        }