XmlSchemaSet.Count Property

Definition

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

Property Value

The number of logical schemas in the XmlSchemaSet.

Remarks

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. 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.

Applies to