DotNetXri.JavaHelpers.hasAttributeNS C# (CSharp) Méthode

hasAttributeNS() static private méthode

static private hasAttributeNS ( this element, string ns, string localName ) : bool
element this
ns string
localName string
Résultat bool
        internal static bool hasAttributeNS(this XmlElement element, string ns, string localName)
        {
            return element.HasAttribute(localName, ns);
        }