7 references to IsReading
System.Xml (7)
System\Xml\XPath\XPathNavigatorReader.cs (7)
982public virtual XmlSchemaValidity Validity { get { return IsReading ? this.schemaInfo.Validity : XmlSchemaValidity.NotKnown; } } 983public override bool IsDefault { get { return IsReading ? this.schemaInfo.IsDefault : false; } } 984public virtual bool IsNil { get { return IsReading ? this.schemaInfo.IsNil : false; } } 985public virtual XmlSchemaSimpleType MemberType { get { return IsReading ? this.schemaInfo.MemberType : null; } } 986public virtual XmlSchemaType SchemaType { get { return IsReading ? this.schemaInfo.SchemaType : null; } } 987public virtual XmlSchemaElement SchemaElement { get { return IsReading ? this.schemaInfo.SchemaElement : null; } } 988public virtual XmlSchemaAttribute SchemaAttribute { get { return IsReading ? this.schemaInfo.SchemaAttribute : null; } }