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

SetPageIdAndParentSheet() private method

private SetPageIdAndParentSheet ( int id, PropertySheet sheet ) : void
id int
sheet PropertySheet
return void
        internal void SetPageIdAndParentSheet(int id, PropertySheet sheet)
        {
            if (sheet == null)
            {
                throw new ArgumentNullException("sheet");
            }
            this._sheet = sheet;
            this._id = id;
        }