7 references to Count
System.Data (1)
fx\src\data\System\Data\XMLSchema.cs (1)
729
Debug.Assert(schemaSet.
Count
== 1, "there should be one schema");
System.Runtime.Serialization (1)
System\Runtime\Serialization\SchemaExporter.cs (1)
551
XmlSchema[] schemaArray = new XmlSchema[schemas.
Count
];
System.Xml (5)
System\Xml\Dom\DocumentSchemaValidator.cs (1)
71
Debug.Assert(schemas != null && schemas.
Count
> 0);
System\Xml\Dom\DocumentXPathNavigator.cs (1)
1044
if (schemas == null || schemas.
Count
== 0) {
System\Xml\Dom\XmlDocument.cs (1)
1249
if (this.schemas == null || this.schemas.
Count
== 0) { //Should we error
System\Xml\Serialization\XmlSchemas.cs (2)
620
int schemaCount = schemaSet.
Count
;
642
isCompiled = schemaSet.IsCompiled && schemaCount == schemaSet.
Count
;