3 writes to _xamlReader
PresentationFramework (3)
MS\Internal\IO\Packaging\XamlFilter.cs (3)
356_xamlReader = new XmlNodeReader(_fixedPageDomTree.DocumentElement); 388_xamlReader = _topLevelReader; 821_xamlReader = new XmlTextReader(_xamlStream);
38 references to _xamlReader
PresentationFramework (38)
MS\Internal\IO\Packaging\XamlFilter.cs (38)
224if (_xamlReader == null) 355_topLevelReader = _xamlReader; 372if (_xamlReader.EOF) 387_xamlReader.Close(); 398switch (_xamlReader.NodeType) 424_xamlReader.Read(); // Consume current token. 499IndexingContentUnit result = BuildIndexingContentUnit(_xamlReader.Value, GetCurrentLcid()); 500_xamlReader.Read(); // Move past data just processed. 507_xamlReader.Read(); // Skip data. 522ElementTableKey elementFullName = new ElementTableKey(_xamlReader.NamespaceURI, _xamlReader.LocalName); 557_xamlReader.Read(); 650if (_xamlReader.IsEmptyElement) 655_xamlReader.Read(); 661_xamlReader.Read(); // skip start-tag 677_xamlReader.Read(); 717_xamlReader.Read(); 729string sourceUri = _xamlReader.GetAttribute(_pageContentSourceAttribute); 739_xamlReader.Read(); 758Debug.Assert(_xamlReader != null); 760string textContent = _xamlReader.GetAttribute(_unicodeStringAttribute); 780Debug.Assert(string.Equals(_xamlReader.LocalName, _fixedPageName, StringComparison.Ordinal)); 790string fixedPageMarkup = _xamlReader.ReadOuterXml(); 795if (_xamlReader.XmlLang.Length > 0) 797fixedPageTree.DocumentElement.SetAttribute(_xmlLangAttribute, _xamlReader.XmlLang); 817if (_xamlReader != null) 819_xamlReader.Close(); 823((XmlTextReader)_xamlReader).WhitespaceHandling = WhitespaceHandling.Significant; 831if (_xamlReader != null) 833_xamlReader.Close(); 863string languageString = _xamlReader.XmlLang; 877_xamlReader.Skip(); 912string value = _xamlReader.GetAttribute(propertyName); 918bool attributeFound = _xamlReader.MoveToFirstAttribute(); 923if ( IsPrefixedPropertyName(_xamlReader.LocalName, out attributePropertyName) 926value = _xamlReader.Value; 931attributeFound = _xamlReader.MoveToNextAttribute(); 934_xamlReader.MoveToElement();