Brettle.Web.NeatHtml.TagInfo.TagInfo C# (CSharp) Method

TagInfo() private method

private TagInfo ( bool isTableRelated, bool isTable, bool isTableCell ) : System
isTableRelated bool
isTable bool
isTableCell bool
return System
        internal TagInfo(bool isTableRelated, bool isTable, bool isTableCell)
        {
            IsTableRelated = isTableRelated;
            IsTable = isTable;
            IsTableCell = isTableCell;
        }
TagInfo