Microsoft.ManagementConsole.PropertyPage.ValidateRequest C# (CSharp) Method

ValidateRequest() private method

private ValidateRequest ( ) : void
return void
        private void ValidateRequest()
        {
            if (!this._initialized)
            {
                throw new InvalidOperationException(Microsoft.ManagementConsole.Internal.Utility.LoadResourceString(Microsoft.ManagementConsole.Internal.Strings.PropertyPageNotInitialized));
            }
            if (this._destroyed)
            {
                throw new InvalidOperationException(Microsoft.ManagementConsole.Internal.Utility.LoadResourceString(Microsoft.ManagementConsole.Internal.Strings.PropertyPageDestroyed));
            }
        }