|
|
public static bool TryGetValueAsBoolean(this XmlAttributeCollection xmlAttributeCollection, string attrName, out bool attrVal, Properties properties = null)
public static bool TryGetValueAsBoolean(this XmlAttributeCollection xmlAttributeCollection, string attrName,
out bool attrVal, Properties properties = null)
{
if (xmlAttributeCollection.TryGetValueAsString(attrName, out string attrValStr))
{
if (properties != null)
{
attrValStr = properties.GetPropertyValue(attrValStr);
}
|
|