14 writes to _impl
System.Private.Xml (14)
System\Xml\Core\XmlTextReader.cs (14)
28_impl = new XmlTextReaderImpl(); 34_impl = new XmlTextReaderImpl(nt); 40_impl = new XmlTextReaderImpl(input); 46_impl = new XmlTextReaderImpl(url, input); 52_impl = new XmlTextReaderImpl(input, nt); 58_impl = new XmlTextReaderImpl(url, input, nt); 64_impl = new XmlTextReaderImpl(input); 70_impl = new XmlTextReaderImpl(url, input); 76_impl = new XmlTextReaderImpl(input, nt); 82_impl = new XmlTextReaderImpl(url, input, nt); 88_impl = new XmlTextReaderImpl(xmlFragment, fragType, context); 94_impl = new XmlTextReaderImpl(xmlFragment, fragType, context); 100_impl = new XmlTextReaderImpl(url, new NameTable()); 106_impl = new XmlTextReaderImpl(url, nt);
81 references to _impl
System.Private.Xml (81)
System\Xml\Core\XmlTextReader.cs (81)
29_impl.OuterReader = this; 35_impl.OuterReader = this; 41_impl.OuterReader = this; 47_impl.OuterReader = this; 53_impl.OuterReader = this; 59_impl.OuterReader = this; 65_impl.OuterReader = this; 71_impl.OuterReader = this; 77_impl.OuterReader = this; 83_impl.OuterReader = this; 89_impl.OuterReader = this; 95_impl.OuterReader = this; 101_impl.OuterReader = this; 107_impl.OuterReader = this; 114get { return _impl.NodeType; } 119get { return _impl.Name; } 124get { return _impl.LocalName; } 129get { return _impl.NamespaceURI; } 134get { return _impl.Prefix; } 139get { return _impl.HasValue; } 144get { return _impl.Value; } 149get { return _impl.Depth; } 154get { return _impl.BaseURI; } 159get { return _impl.IsEmptyElement; } 164get { return _impl.IsDefault; } 169get { return _impl.QuoteChar; } 174get { return _impl.XmlSpace; } 179get { return _impl.XmlLang; } 184public override int AttributeCount { get { return _impl.AttributeCount; } } 188return _impl.GetAttribute(name); 193return _impl.GetAttribute(localName, namespaceURI); 198return _impl.GetAttribute(i); 203return _impl.MoveToAttribute(name); 208return _impl.MoveToAttribute(localName, namespaceURI); 213_impl.MoveToAttribute(i); 218return _impl.MoveToFirstAttribute(); 223return _impl.MoveToNextAttribute(); 228return _impl.MoveToElement(); 233return _impl.ReadAttributeValue(); 238return _impl.Read(); 243get { return _impl.EOF; } 248_impl.Close(); 253get { return _impl.ReadState; } 258_impl.Skip(); 263get { return _impl.NameTable; } 268string? ns = _impl.LookupNamespace(prefix); 283_impl.ResolveEntity(); 294return _impl.ReadContentAsBase64(buffer, index, count); 299return _impl.ReadElementContentAsBase64(buffer, index, count); 304return _impl.ReadContentAsBinHex(buffer, index, count); 309return _impl.ReadElementContentAsBinHex(buffer, index, count); 324_impl.MoveOffEntityReference(); 333public int LineNumber { get { return _impl.LineNumber; } } 335public int LinePosition { get { return _impl.LinePosition; } } 342return _impl.GetNamespacesInScope(scope); 347return _impl.LookupNamespace(prefix); 352return _impl.LookupPrefix(namespaceName); 359return _impl.GetNamespacesInScope(scope); 367get { return _impl.Namespaces; } 368set { _impl.Namespaces = value; } 373get { return _impl.Normalization; } 374set { _impl.Normalization = value; } 379get { return _impl.Encoding; } 384get { return _impl.WhitespaceHandling; } 385set { _impl.WhitespaceHandling = value; } 391get { return _impl.DtdProcessing == DtdProcessing.Prohibit; } 392set { _impl.DtdProcessing = value ? DtdProcessing.Prohibit : DtdProcessing.Parse; } 397get { return _impl.DtdProcessing; } 398set { _impl.DtdProcessing = value; } 403get { return _impl.EntityHandling; } 404set { _impl.EntityHandling = value; } 409set { _impl.XmlResolver = value; } 414_impl.ResetState(); 419return _impl.GetRemainder(); 424return _impl.ReadChars(buffer, index, count); 429return _impl.ReadBase64(array, offset, len); 434return _impl.ReadBinHex(array, offset, len); 441get { return _impl; } 446get { return _impl.NamespaceManager; } 452set { _impl.XmlValidatingReaderCompatibilityMode = value; } 457get { return _impl.DtdInfo; }