System.Xml.XmlNode.HasAttributes C# (CSharp) Méthode

HasAttributes() public méthode

public HasAttributes ( ) : bool
Résultat bool
        public bool HasAttributes()
        {
            return false;
        }

Usage Example

 /// <summary>
 /// Each of these parsing methods is responsible for recognizing an RDF
 /// syntax production and adding the appropriate structure to the XMP tree.
 /// </summary>
 /// <remarks>
 /// Each of these parsing methods is responsible for recognizing an RDF
 /// syntax production and adding the appropriate structure to the XMP tree.
 /// They simply return for success, failures will throw an exception.
 /// </remarks>
 /// <param name="xmp">the xmp metadata object that is generated</param>
 /// <param name="rdfRdfNode">the top-level xml node</param>
 /// <exception cref="Com.Adobe.Xmp.XMPException">thown on parsing errors</exception>
 internal static void Rdf_RDF(XMPMetaImpl xmp, XmlNode rdfRdfNode)
 {
     if (rdfRdfNode.HasAttributes())
     {
         Rdf_NodeElementList(xmp, xmp.GetRoot(), rdfRdfNode);
     }
     else
     {
         throw new XMPException("Invalid attributes of rdf:RDF element", XMPErrorConstants.Badrdf);
     }
 }