XmlValidatingReader.IsDefault Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une valeur indiquant si le nœud actuel est un attribut généré à partir de la valeur par défaut définie dans la définition de type de document (DTD) ou le schéma.
public:
virtual property bool IsDefault { bool get(); };
public override bool IsDefault { get; }
member this.IsDefault : bool
Public Overrides ReadOnly Property IsDefault As Boolean
Valeur de propriété
true
si le nœud actuel est un attribut dont la valeur a été générée à partir de la valeur par défaut définie dans le DTD ou le schéma ; false
si la valeur d'attribut a été définie explicitement.
Exemples
L’exemple suivant affiche tous les nœuds d’attributs sur l’élément racine.
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
// Create the reader.
XmlTextReader^ txtreader = gcnew XmlTextReader( "book4.xml" );
XmlValidatingReader^ reader = gcnew XmlValidatingReader( txtreader );
reader->MoveToContent();
// Display each of the attribute nodes, including default attributes.
while ( reader->MoveToNextAttribute() )
{
if ( reader->IsDefault )
Console::Write( "(default attribute) " );
Console::WriteLine( " {0} = {1}", reader->Name, reader->Value );
}
// Close the reader.
reader->Close();
}
using System;
using System.IO;
using System.Xml;
public class Sample
{
public static void Main(){
//Create the reader.
XmlTextReader txtreader = new XmlTextReader("book4.xml");
XmlValidatingReader reader = new XmlValidatingReader(txtreader);
reader.MoveToContent();
//Display each of the attribute nodes, including default attributes.
while (reader.MoveToNextAttribute()){
if (reader.IsDefault)
Console.Write("(default attribute) ");
Console.WriteLine("{0} = {1}", reader.Name, reader.Value);
}
//Close the reader.
reader.Close();
}
} // End class
Imports System.IO
Imports System.Xml
public class Sample
public shared sub Main()
'Create the reader.
Dim txtreader as XmlTextReader = new XmlTextReader("book4.xml")
Dim reader as XmlValidatingReader = new XmlValidatingReader(txtreader)
reader.MoveToContent()
'Display each of the attribute nodes, including default attributes.
while (reader.MoveToNextAttribute())
if (reader.IsDefault)
Console.Write("(default attribute) ")
end if
Console.WriteLine("{0} = {1}", reader.Name, reader.Value)
end while
'Close the reader.
reader.Close()
end sub
end class
L’exemple utilise les fichiers suivants comme entrée.
book4.xml
<!DOCTYPE book SYSTEM 'book.dtd'>
<book ISBN = '1-861001-57-5'>
<title>Pride And Prejudice</title>
<price>19.95</price>
</book>
book.dtd
<!ELEMENT book (title,price)>
<!ATTLIST book
genre CDATA "novel"
ISBN CDATA #REQUIRED>
<!ELEMENT title (#PCDATA)>
<!ELEMENT price (#PCDATA)>
Remarques
Cette propriété s’applique uniquement à un nœud d’attribut.
Notes
La XmlValidatingReader classe est obsolète dans .NET Framework 2.0. Vous pouvez créer une instance de validation à XmlReader l’aide de la XmlReaderSettings classe et de la Create méthode . Pour plus d'informations, consultez la section Notes de la page de référence XmlReader.