2 writes to _coreReader
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlValidatingReaderImpl.cs (2)
131_coreReader = reader; 214_coreReader = reader;
47 references to _coreReader
dotnet-svcutil-lib (47)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlValidatingReaderImpl.cs (47)
151_schemaCollection = new XmlSchemaCollection(_coreReader.NameTable); 172if (_coreReader.BaseURI.Length > 0) 174_validator.BaseUri = GetResolver().ResolveUri(null, _coreReader.BaseURI); 192if (_coreReader.BaseURI.Length > 0) 194_validator.BaseUri = GetResolver().ResolveUri(null, _coreReader.BaseURI); 234_schemaCollection = new XmlSchemaCollection(_coreReader.NameTable); 267settings = _coreReader.Settings; 292return _coreReader.NodeType; 301return _coreReader.Name; 310return _coreReader.LocalName; 319return _coreReader.NamespaceURI; 328return _coreReader.Prefix; 337return _coreReader.HasValue; 346return _coreReader.Value; 355return _coreReader.Depth; 364return _coreReader.BaseURI; 373return _coreReader.IsEmptyElement; 382return _coreReader.IsDefault; 391return _coreReader.QuoteChar; 400return _coreReader.XmlSpace; 409return _coreReader.XmlLang; 418return (_parsingFunction == ParsingFunction.Init) ? ReadState.Initial : _coreReader.ReadState; 427return _coreReader.EOF; 436return _coreReader.NameTable; 454return _coreReader.AttributeCount; 461return _coreReader.GetAttribute(name); 467return _coreReader.GetAttribute(localName, namespaceURI); 473return _coreReader.GetAttribute(i); 479if (!_coreReader.MoveToAttribute(name)) 490if (!_coreReader.MoveToAttribute(localName, namespaceURI)) 501_coreReader.MoveToAttribute(i); 508if (!_coreReader.MoveToFirstAttribute()) 519if (!_coreReader.MoveToNextAttribute()) 530if (!_coreReader.MoveToElement()) 544if (_coreReader.Read()) 563if (_coreReader.ReadState == ReadState.Interactive) 589_coreReader.Close(); 607if (!_coreReader.ReadAttributeValue()) 735_coreReader.ResolveEntity(); 783return ((IXmlLineInfo)_coreReader).LineNumber; 792return ((IXmlLineInfo)_coreReader).LinePosition; 865return (XmlReader)_coreReader; 1049Debug.Assert(_coreReader.NodeType == XmlNodeType.EntityReference); 1050int initialDepth = _coreReader.Depth; 1052while (_outerReader.Read() && _coreReader.Depth > initialDepth) ; 1096switch (_coreReader.NodeType) 1099if (_coreReader.Depth > 0 || _coreReaderImpl.FragmentType != XmlNodeType.Document)