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

InternalShutdown() private method

private InternalShutdown ( ) : void
return void
        internal override void InternalShutdown()
        {
            if (this._control != null)
            {
                this._control.Dispose();
            }
            if (this._containerControl != null)
            {
                this._containerControl.Dispose();
            }
            this._control = null;
            this._containerControl = null;
            this._controlType = null;
        }