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

InternalDestroy() private method

private InternalDestroy ( ) : void
return void
        internal void InternalDestroy()
        {
            this._destroyed = true;
            this.OnDestroy();
            if (this._control != null)
            {
                this._control.Dispose();
            }
            if (this._containerControl != null)
            {
                this._containerControl.Dispose();
            }
            this._control = null;
            this._containerControl = null;
        }