XmlSchemaSet.Count Proprietà
Definizione
Ottiene il numero di schemi XSD (XML Schema Definition Language) logici nella classe XmlSchemaSet.Gets the number of logical XML Schema definition language (XSD) schemas in the XmlSchemaSet.
public:
property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer
Valore della proprietà
Il numero di schemi logici nella classe XmlSchemaSet.The number of logical schemas in the XmlSchemaSet.
Commenti
Se sono presenti due schemi per lo spazio dei nomi http://www.contoso.com
in XmlSchemaSet , la Count proprietà restituirà 1 perché gli schemi vengono considerati come un singolo schema logico per scopi di convalida.If there are two schemas for the namespace http://www.contoso.com
in the XmlSchemaSet, the Count property would return 1 because the schemas are treated as a single logical schema for validation purposes. Tuttavia, se uno schema per lo spazio dei nomi ha http://www.contoso.com/retail
importato uno schema per lo http://www.contoso.com/books
spazio dei nomi, il valore della Count proprietà sarà 2.However, if a schema for the namespace http://www.contoso.com/retail
imported a schema for the http://www.contoso.com/books
namespace, the value of the Count property would be 2.