14 writes to _impl
dotnet-svcutil-lib (14)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReader.cs (14)
35_impl = new XmlTextReaderImpl(); 41_impl = new XmlTextReaderImpl(nt); 47_impl = new XmlTextReaderImpl(input); 53_impl = new XmlTextReaderImpl(url, input); 59_impl = new XmlTextReaderImpl(input, nt); 65_impl = new XmlTextReaderImpl(url, input, nt); 71_impl = new XmlTextReaderImpl(input); 77_impl = new XmlTextReaderImpl(url, input); 83_impl = new XmlTextReaderImpl(input, nt); 89_impl = new XmlTextReaderImpl(url, input, nt); 95_impl = new XmlTextReaderImpl(xmlFragment, fragType, context); 101_impl = new XmlTextReaderImpl(xmlFragment, fragType, context); 109_impl = new XmlTextReaderImpl(url, new NameTable()); 117_impl = new XmlTextReaderImpl(url, nt);
81 references to _impl
dotnet-svcutil-lib (81)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReader.cs (81)
36_impl.OuterReader = this; 42_impl.OuterReader = this; 48_impl.OuterReader = this; 54_impl.OuterReader = this; 60_impl.OuterReader = this; 66_impl.OuterReader = this; 72_impl.OuterReader = this; 78_impl.OuterReader = this; 84_impl.OuterReader = this; 90_impl.OuterReader = this; 96_impl.OuterReader = this; 102_impl.OuterReader = this; 110_impl.OuterReader = this; 118_impl.OuterReader = this; 125get { return _impl.NodeType; } 130get { return _impl.Name; } 135get { return _impl.LocalName; } 140get { return _impl.NamespaceURI; } 145get { return _impl.Prefix; } 150get { return _impl.HasValue; } 155get { return _impl.Value; } 160get { return _impl.Depth; } 165get { return _impl.BaseURI; } 170get { return _impl.IsEmptyElement; } 175get { return _impl.IsDefault; } 180get { return _impl.QuoteChar; } 185get { return _impl.XmlSpace; } 190get { return _impl.XmlLang; } 195public override int AttributeCount { get { return _impl.AttributeCount; } } 199return _impl.GetAttribute(name); 204return _impl.GetAttribute(localName, namespaceURI); 209return _impl.GetAttribute(i); 214return _impl.MoveToAttribute(name); 219return _impl.MoveToAttribute(localName, namespaceURI); 224_impl.MoveToAttribute(i); 229return _impl.MoveToFirstAttribute(); 234return _impl.MoveToNextAttribute(); 239return _impl.MoveToElement(); 244return _impl.ReadAttributeValue(); 249return _impl.Read(); 254get { return _impl.EOF; } 259_impl.Close(); 264get { return _impl.ReadState; } 269_impl.Skip(); 274get { return _impl.NameTable; } 279string ns = _impl.LookupNamespace(prefix); 294_impl.ResolveEntity(); 305return _impl.ReadContentAsBase64(buffer, index, count); 310return _impl.ReadElementContentAsBase64(buffer, index, count); 315return _impl.ReadContentAsBinHex(buffer, index, count); 320return _impl.ReadElementContentAsBinHex(buffer, index, count); 335_impl.MoveOffEntityReference(); 344public int LineNumber { get { return _impl.LineNumber; } } 346public int LinePosition { get { return _impl.LinePosition; } } 353return _impl.GetNamespacesInScope(scope); 358return _impl.LookupNamespace(prefix); 363return _impl.LookupPrefix(namespaceName); 372return _impl.GetNamespacesInScope(scope); 381get { return _impl.Namespaces; } 382set { _impl.Namespaces = value; } 387get { return _impl.Normalization; } 388set { _impl.Normalization = value; } 393get { return _impl.Encoding; } 398get { return _impl.WhitespaceHandling; } 399set { _impl.WhitespaceHandling = value; } 405get { return _impl.DtdProcessing == DtdProcessing.Prohibit; } 406set { _impl.DtdProcessing = value ? DtdProcessing.Prohibit : DtdProcessing.Parse; } 411get { return _impl.DtdProcessing; } 412set { _impl.DtdProcessing = value; } 417get { return _impl.EntityHandling; } 418set { _impl.EntityHandling = value; } 423set { _impl.XmlResolver = value; } 428_impl.ResetState(); 433return _impl.GetRemainder(); 438return _impl.ReadChars(buffer, index, count); 443return _impl.ReadBase64(array, offset, len); 448return _impl.ReadBinHex(array, offset, len); 455get { return _impl; } 460get { return _impl.NamespaceManager; } 466set { _impl.XmlValidatingReaderCompatibilityMode = value; } 471get { return _impl.DtdInfo; }