3 writes to _xamlReader
PresentationFramework (3)
MS\Internal\IO\Packaging\XamlFilter.cs (3)
350_xamlReader = new XmlNodeReader(_fixedPageDomTree.DocumentElement); 382_xamlReader = _topLevelReader; 815_xamlReader = new XmlTextReader(_xamlStream);
38 references to _xamlReader
PresentationFramework (38)
MS\Internal\IO\Packaging\XamlFilter.cs (38)
218if (_xamlReader == null) 349_topLevelReader = _xamlReader; 366if (_xamlReader.EOF) 381_xamlReader.Close(); 392switch (_xamlReader.NodeType) 418_xamlReader.Read(); // Consume current token. 493IndexingContentUnit result = BuildIndexingContentUnit(_xamlReader.Value, GetCurrentLcid()); 494_xamlReader.Read(); // Move past data just processed. 501_xamlReader.Read(); // Skip data. 516ElementTableKey elementFullName = new ElementTableKey(_xamlReader.NamespaceURI, _xamlReader.LocalName); 551_xamlReader.Read(); 644if (_xamlReader.IsEmptyElement) 649_xamlReader.Read(); 655_xamlReader.Read(); // skip start-tag 671_xamlReader.Read(); 711_xamlReader.Read(); 723string sourceUri = _xamlReader.GetAttribute(_pageContentSourceAttribute); 733_xamlReader.Read(); 752Debug.Assert(_xamlReader != null); 754string textContent = _xamlReader.GetAttribute(_unicodeStringAttribute); 774Debug.Assert(string.Equals(_xamlReader.LocalName, _fixedPageName, StringComparison.Ordinal)); 784string fixedPageMarkup = _xamlReader.ReadOuterXml(); 789if (_xamlReader.XmlLang.Length > 0) 791fixedPageTree.DocumentElement.SetAttribute(_xmlLangAttribute, _xamlReader.XmlLang); 811if (_xamlReader != null) 813_xamlReader.Close(); 817((XmlTextReader)_xamlReader).WhitespaceHandling = WhitespaceHandling.Significant; 825if (_xamlReader != null) 827_xamlReader.Close(); 857string languageString = _xamlReader.XmlLang; 871_xamlReader.Skip(); 906string value = _xamlReader.GetAttribute(propertyName); 912bool attributeFound = _xamlReader.MoveToFirstAttribute(); 917if ( IsPrefixedPropertyName(_xamlReader.LocalName, out attributePropertyName) 920value = _xamlReader.Value; 925attributeFound = _xamlReader.MoveToNextAttribute(); 928_xamlReader.MoveToElement();