CalDavSynchronizer.Conversions.Msft.HtmlSchema.ClosesOnParentElementEnd C# (CSharp) Метод

ClosesOnParentElementEnd() статический приватный Метод

returns true when xmlElementName closes when the outer element closes this is true of elements with optional start tags
static private ClosesOnParentElementEnd ( string xmlElementName ) : bool
xmlElementName string /// string representing name to test ///
Результат bool
        internal static bool ClosesOnParentElementEnd(string xmlElementName)
        {
            // convert to lowercase when testing
            return _htmlElementsClosingOnParentElementEnd.Contains(xmlElementName.ToLower());
        }