HasAttributeNS

Element.HasAttributeNS method

Returns true when an attribute with a given local name and namespace URI is specified on this element or has a default value, false otherwise.

public bool HasAttributeNS(string namespaceURI, string localName)
ParameterTypeDescription
namespaceURIStringThe attribute namespace URI.
localNameStringThe attribute local name.

Return Value

True if has attribute with the namespace URI and local name; otherwise, false.

See Also