3 writes to _impl
System.Private.Xml (3)
System\Xml\Core\XmlValidatingReader.cs (3)
27_impl = new XmlValidatingReaderImpl(reader); 35_impl = new XmlValidatingReaderImpl(xmlFragment, fragType, context); 43_impl = new XmlValidatingReaderImpl(xmlFragment, fragType, context);
61 references to _impl
System.Private.Xml (61)
System\Xml\Core\XmlValidatingReader.cs (61)
28_impl.OuterReader = this; 36_impl.OuterReader = this; 44_impl.OuterReader = this; 52get { return _impl.NodeType; } 57get { return _impl.Name; } 62get { return _impl.LocalName; } 67get { return _impl.NamespaceURI; } 72get { return _impl.Prefix; } 77get { return _impl.HasValue; } 82get { return _impl.Value; } 87get { return _impl.Depth; } 92get { return _impl.BaseURI; } 97get { return _impl.IsEmptyElement; } 102get { return _impl.IsDefault; } 107get { return _impl.QuoteChar; } 112get { return _impl.XmlSpace; } 117get { return _impl.XmlLang; } 122public override int AttributeCount { get { return _impl.AttributeCount; } } 126return _impl.GetAttribute(name); 131return _impl.GetAttribute(localName, namespaceURI); 136return _impl.GetAttribute(i); 141return _impl.MoveToAttribute(name); 146return _impl.MoveToAttribute(localName, namespaceURI); 151_impl.MoveToAttribute(i); 156return _impl.MoveToFirstAttribute(); 161return _impl.MoveToNextAttribute(); 166return _impl.MoveToElement(); 171return _impl.ReadAttributeValue(); 176return _impl.Read(); 181get { return _impl.EOF; } 186_impl.Close(); 191get { return _impl.ReadState; } 196get { return _impl.NameTable; } 201string? ns = _impl.LookupNamespace(prefix); 217_impl.ResolveEntity(); 228return _impl.ReadContentAsBase64(buffer, index, count); 233return _impl.ReadElementContentAsBase64(buffer, index, count); 238return _impl.ReadContentAsBinHex(buffer, index, count); 243return _impl.ReadElementContentAsBinHex(buffer, index, count); 250_impl.MoveOffEntityReference(); 259public int LineNumber { get { return _impl.LineNumber; } } 261public int LinePosition { get { return _impl.LinePosition; } } 268return _impl.GetNamespacesInScope(scope); 273return _impl.LookupNamespace(prefix); 278return _impl.LookupPrefix(namespaceName); 286add { _impl.ValidationEventHandler += value; } 287remove { _impl.ValidationEventHandler -= value; } 292get { return _impl.SchemaType; } 297get { return _impl.Reader; } 302get { return _impl.ValidationType; } 303set { _impl.ValidationType = value; } 308get { return _impl.Schemas; } 313get { return _impl.EntityHandling; } 314set { _impl.EntityHandling = value; } 319set { _impl.XmlResolver = value; } 324get { return _impl.Namespaces; } 325set { _impl.Namespaces = value; } 330return _impl.ReadTypedValue(); 335get { return _impl.Encoding; } 342get { return _impl; } 347get { return _impl.DtdInfo; }