FrameworkFork\Microsoft.Xml\Xml\schema\ContentValidator.cs (7)
1082public virtual ArrayList ExpectedParticles(ValidationState context, bool isRequiredOnly, XmlSchemaSet schemaSet)
1087public static void AddParticleToExpected(XmlSchemaParticle p, XmlSchemaSet schemaSet, ArrayList particles)
1092public static void AddParticleToExpected(XmlSchemaParticle p, XmlSchemaSet schemaSet, ArrayList particles, bool global)
1754public override ArrayList ExpectedParticles(ValidationState context, bool isRequiredOnly, XmlSchemaSet schemaSet)
1903public override ArrayList ExpectedParticles(ValidationState context, bool isRequiredOnly, XmlSchemaSet schemaSet)
2219public override ArrayList ExpectedParticles(ValidationState context, bool isRequiredOnly, XmlSchemaSet schemaSet)
2346public override ArrayList ExpectedParticles(ValidationState context, bool isRequiredOnly, XmlSchemaSet schemaSet)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (6)
70private XmlSchemaSet _schemaSet;
173public XmlSchemaValidator(XmlNameTable nameTable, XmlSchemaSet schemas, IXmlNamespaceResolver namespaceResolver, XmlSchemaValidationFlags validationFlags)
1126internal XmlSchemaSet SchemaSet
1827XmlSchemaSet localSet = new XmlSchemaSet(); //Avoiding cost of incremental compilation checks by compiling schema in a seperate set and adding compiled set
2525internal static void ElementValidationError(XmlQualifiedName name, ValidationState context, ValidationEventHandler eventHandler, object sender, string sourceUri, int lineNo, int linePos, XmlSchemaSet schemaSet)
2583internal static void CompleteValidationError(ValidationState context, ValidationEventHandler eventHandler, object sender, string sourceUri, int lineNo, int linePos, XmlSchemaSet schemaSet)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XsdDataContractImporter.cs (10)
72public void Import(XmlSchemaSet schemas)
80public void Import(XmlSchemaSet schemas, ICollection<XmlQualifiedName> typeNames)
91public void Import(XmlSchemaSet schemas, XmlQualifiedName typeName)
103public XmlQualifiedName Import(XmlSchemaSet schemas, XmlSchemaElement element)
117public bool CanImport(XmlSchemaSet schemas)
125public bool CanImport(XmlSchemaSet schemas, ICollection<XmlQualifiedName> typeNames)
136public bool CanImport(XmlSchemaSet schemas, XmlQualifiedName typeName)
147public bool CanImport(XmlSchemaSet schemas, XmlSchemaElement element)
231private void InternalImport(XmlSchemaSet schemas, ICollection<XmlQualifiedName> typeNames, ICollection<XmlSchemaElement> elements, XmlQualifiedName[] elementTypeNames/*filled on return*/)
266private bool InternalCanImport(XmlSchemaSet schemas, ICollection<XmlQualifiedName> typeNames, ICollection<XmlSchemaElement> elements, XmlQualifiedName[] elementTypeNames)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (13)
30private readonly XmlSchemaSet _allSchemas;
139private XmlSchemaSet AllSchemas
783private static XmlSchemaElement FindSchemaElement(XmlSchemaSet schemaSet, XmlQualifiedName elementName)
789private static XmlSchemaElement FindSchemaElement(XmlSchemaSet schemaSet, XmlQualifiedName elementName, out XmlSchema containingSchema)
807private static XmlSchemaType FindSchemaType(XmlSchemaSet schemaSet, XmlQualifiedName typeName)
815private static XmlSchemaType FindSchemaType(XmlSchemaSet schemaSet, XmlQualifiedName typeName, out XmlSchema containingSchema)
836private static XmlSchemaSet GatherSchemas(WsdlImporter importer)
838XmlSchemaSet schemaSet = new XmlSchemaSet();
887private static void CollectEncodedAndLiteralSchemas(WsdlNS.ServiceDescriptionCollection serviceDescriptions, XmlSchemas encodedSchemas, XmlSchemas literalSchemas, XmlSchemaSet allSchemas)
1023private static void AddImport(XmlSchema schema, Hashtable imports, XmlSchemaSet allSchemas)
1171private static IEnumerable GetSchema(XmlSchemaSet schemaSet, string ns)
1244private static XmlSchemaComplexType GetElementComplexType(XmlQualifiedName elementName, XmlSchemaSet schemaSet, out string ns, out XmlSchemaForm elementFormDefault)
1441readonly protected XmlSchemaSet schemaSet;