5 implementations of IsDefault
System.Xml (5)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
884bool IXmlSchemaInfo.IsDefault {
System\Xml\Core\XsdValidatingReader.cs (1)
1340bool IXmlSchemaInfo.IsDefault {
System\Xml\Dom\XmlName.cs (1)
103public virtual bool IsDefault {
System\Xml\Schema\XmlSchemaInfo.cs (1)
41public bool IsDefault {
System\Xml\XPath\XPathNavigatorReader.cs (1)
983public override bool IsDefault { get { return IsReading ? this.schemaInfo.IsDefault : false; } }
8 references to IsDefault
System.Runtime.Serialization (1)
System\Xml\XmlDictionaryWriter.cs (1)
757if (defattr || (!reader.IsDefault && (reader.SchemaInfo == null || !reader.SchemaInfo.IsDefault)))
System.Xml (7)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
886return readerAsIXmlSchemaInfo.IsDefault;
System\Xml\Core\XmlReader.cs (1)
1476if (schemaInfo != null && schemaInfo.IsDefault) {
System\Xml\Core\XmlWriter.cs (1)
453if (defattr || (schemaInfo == null || !schemaInfo.IsDefault)) {
System\Xml\Core\XmlWriterAsync.cs (1)
405if (defattr || (schemaInfo == null || !schemaInfo.IsDefault)) {
System\Xml\Dom\XmlName.cs (2)
175SetIsDefault(schemaInfo.IsDefault); 243&& schemaInfo.IsDefault == ((flags & IsDefaultBit) != 0)
System\Xml\XPath\XPathNavigatorReader.cs (1)
983public override bool IsDefault { get { return IsReading ? this.schemaInfo.IsDefault : false; } }