11 instantiations of XmlSchemaInfo
System.Private.Xml (8)
System\Xml\Core\XsdValidatingReader.cs (2)
28attributeSchemaInfo = new XmlSchemaInfo(); 148_xmlSchemaInfo = new XmlSchemaInfo();
System\Xml\Dom\DocumentSchemaValidator.cs (3)
161_schemaInfo ??= new XmlSchemaInfo(); 162_attributeSchemaInfo = new XmlSchemaInfo(); 579_schemaInfo = new XmlSchemaInfo();
System\Xml\Dom\XmlDocument.cs (3)
129internal static readonly IXmlSchemaInfo NotKnownSchemaInfo = new XmlSchemaInfo(XmlSchemaValidity.NotKnown); 130internal static readonly IXmlSchemaInfo ValidSchemaInfo = new XmlSchemaInfo(XmlSchemaValidity.Valid); 131internal static readonly IXmlSchemaInfo InvalidSchemaInfo = new XmlSchemaInfo(XmlSchemaValidity.Invalid);
System.Private.Xml.Linq (3)
System\Xml\Schema\XNodeValidator.cs (3)
91XmlSchemaInfo si = new XmlSchemaInfo(); 249XmlSchemaInfo? si = addSchemaInfo ? new XmlSchemaInfo() : null; 298XmlSchemaInfo? si = addSchemaInfo ? new XmlSchemaInfo() : null;
34 references to XmlSchemaInfo
netstandard (1)
netstandard.cs (1)
2338[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Schema.XmlSchemaInfo))]
System.Private.Xml (17)
System\Xml\Core\XsdValidatingReader.cs (3)
24internal XmlSchemaInfo attributeSchemaInfo; 91private readonly XmlSchemaInfo _xmlSchemaInfo; 1986private XmlSchemaInfo AttributeSchemaInfo
System\Xml\Dom\DocumentSchemaValidator.cs (3)
30private XmlSchemaInfo? _attributeSchemaInfo; 33private XmlSchemaInfo? _schemaInfo; 670private void ValidateSingleElement(XmlElement elementNode, bool skipToEnd, XmlSchemaInfo? newSchemaInfo)
System\Xml\Schema\XmlSchemaValidator.cs (11)
391public void ValidateElement(string localName, string namespaceUri, XmlSchemaInfo? schemaInfo) 396public void ValidateElement(string localName, string namespaceUri, XmlSchemaInfo? schemaInfo, string? xsiType, string? xsiNil, string? xsiSchemaLocation, string? xsiNoNamespaceSchemaLocation) 479public object? ValidateAttribute(string localName, string namespaceUri, string attributeValue, XmlSchemaInfo? schemaInfo) 486public object? ValidateAttribute(string localName, string namespaceUri, XmlValueGetter attributeValue, XmlSchemaInfo? schemaInfo) 493private object? ValidateAttribute(string localName, string namespaceUri, XmlValueGetter? attributeValueGetter, string? attributeStringValue, XmlSchemaInfo? schemaInfo) 709public void ValidateEndOfAttributes(XmlSchemaInfo? schemaInfo) 868public object? ValidateEndElement(XmlSchemaInfo? schemaInfo) 873public object? ValidateEndElement(XmlSchemaInfo? schemaInfo, object typedValue) 885public void SkipToEndElement(XmlSchemaInfo? schemaInfo) 1058XmlSchemaInfo attSchemaInfo = attrValidInfo.attributeSchemaInfo; 1167private object? InternalValidateEndElement(XmlSchemaInfo? schemaInfo, object? typedValue)
System.Private.Xml.Linq (14)
System\Xml\Schema\XNodeValidator.cs (14)
25private HashSet<XmlSchemaInfo>? schemaInfos; 89private XmlSchemaInfo GetDefaultAttributeSchemaInfo(XmlSchemaAttribute sa) 91XmlSchemaInfo si = new XmlSchemaInfo(); 154private void ReplaceSchemaInfo(XObject o, XmlSchemaInfo schemaInfo) 156schemaInfos ??= new HashSet<XmlSchemaInfo>(new XmlSchemaInfoEqualityComparer()); 157XmlSchemaInfo? si = o.Annotation<XmlSchemaInfo>(); 161o.RemoveAnnotations<XmlSchemaInfo>(); 249XmlSchemaInfo? si = addSchemaInfo ? new XmlSchemaInfo() : null; 298XmlSchemaInfo? si = addSchemaInfo ? new XmlSchemaInfo() : null; 376internal sealed class XmlSchemaInfoEqualityComparer : IEqualityComparer<XmlSchemaInfo> 378public bool Equals(XmlSchemaInfo? si1, XmlSchemaInfo? si2) 392public int GetHashCode(XmlSchemaInfo? si)
System.Xml (1)
System.Xml.cs (1)
63[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Schema.XmlSchemaInfo))]
System.Xml.ReaderWriter (1)
artifacts\obj\System.Xml.ReaderWriter\Debug\net10.0\System.Xml.ReaderWriter.Forwards.cs (1)
62[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Schema.XmlSchemaInfo))]