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

getAttributeNS() static private méthode

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