2 writes to _textXmlReader
System.Private.Xml (2)
System\Xml\BinaryXml\XmlBinaryReader.cs (2)
883_textXmlReader = null; 3217_textXmlReader = new XmlTextReaderImpl(xmltext, xpc, settings);
47 references to _textXmlReader
System.Private.Xml (47)
System\Xml\BinaryXml\XmlBinaryReader.cs (47)
457Debug.Assert(_textXmlReader != null); 458return _textXmlReader.HasValue; 496Debug.Assert(_textXmlReader != null); 497return _textXmlReader.Value; 525Debug.Assert(_textXmlReader != null); 526adj = _textXmlReader.Depth; 585Debug.Assert(_textXmlReader != null); 586return _textXmlReader.XmlSpace; 607Debug.Assert(_textXmlReader != null); 608return _textXmlReader.XmlLang; 638Debug.Assert(_textXmlReader != null); 639return _textXmlReader.AttributeCount; 651Debug.Assert(_textXmlReader != null); 652return _textXmlReader.GetAttribute(name, ns); 670Debug.Assert(_textXmlReader != null); 671return _textXmlReader.GetAttribute(name); 686Debug.Assert(_textXmlReader != null); 687return _textXmlReader.GetAttribute(i); 701Debug.Assert(_textXmlReader != null); 702return UpdateFromTextReader(_textXmlReader.MoveToAttribute(name, ns)); 723Debug.Assert(_textXmlReader != null); 724return UpdateFromTextReader(_textXmlReader.MoveToAttribute(name)); 742Debug.Assert(_textXmlReader != null); 743_textXmlReader.MoveToAttribute(i); 758Debug.Assert(_textXmlReader != null); 759return UpdateFromTextReader(_textXmlReader.MoveToFirstAttribute()); 785Debug.Assert(_textXmlReader != null); 786return UpdateFromTextReader(_textXmlReader.MoveToNextAttribute()); 817Debug.Assert(_textXmlReader != null); 818return UpdateFromTextReader(_textXmlReader.MoveToElement()); 866Debug.Assert(_textXmlReader != null); 867return UpdateFromTextReader(_textXmlReader.ReadAttributeValue()); 880if (null != _textXmlReader) 882_textXmlReader.Close(); 904Debug.Assert(_textXmlReader != null); 905return _textXmlReader.LookupNamespace(prefix); 943Debug.Assert(_textXmlReader != null); 945if (_textXmlReader.Read()) 1810Debug.Assert(_textXmlReader != null); 1811return _textXmlReader.GetNamespacesInScope(scope); 1850Debug.Assert(_textXmlReader != null); 1851return _textXmlReader.LookupPrefix(namespaceName); 3218if (!_textXmlReader.Read() 3219|| ((_textXmlReader.NodeType == XmlNodeType.XmlDeclaration) 3220&& !_textXmlReader.Read())) 3234Debug.Assert(_textXmlReader != null); 3235XmlReader r = _textXmlReader;