Microsoft.ManagementConsole.PropertySheet.PropertySheet C# (CSharp) Method

PropertySheet() private method

private PropertySheet ( PropertySheetManager manager, int sheetId, Microsoft auxiliarySelectionData ) : Microsoft.ManagementConsole.Advanced
manager PropertySheetManager
sheetId int
auxiliarySelectionData Microsoft
return Microsoft.ManagementConsole.Advanced
        internal PropertySheet(PropertySheetManager manager, int sheetId, Microsoft.ManagementConsole.AuxiliarySelectionData auxiliarySelectionData)
        {
            if (manager == null)
            {
                throw new ArgumentNullException("manager");
            }
            this._manager = manager;
            this._id = sheetId;
            this._auxiliarySelectionData = auxiliarySelectionData;
            this._dialogHost = new ConsoleDialogHost(this._id);
        }