Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

XmlSchemaSet::Count Property

 

Gets the number of logical XML Schema definition language (XSD) schemas in the XmlSchemaSet.

Namespace:   System.Xml.Schema
Assembly:  System.Xml (in System.Xml.dll)

public:
property int Count {
	int get();
}

Property Value

Type: System::Int32

The number of logical schemas in the XmlSchemaSet.

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.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft