1 write to _reader
PresentationFramework (1)
src\Framework\MS\Internal\Globalization\BamlResourceDeserializer.cs (1)
56_reader = new BamlReader(bamlSteam);
56 references to _reader
PresentationFramework (56)
src\Framework\MS\Internal\Globalization\BamlResourceDeserializer.cs (56)
57_reader.Read(); 59if (_reader.NodeType != BamlNodeType.StartDocument) 72while (_bamlTreeStack.Count > 0 && _reader.Read()) 74switch (_reader.NodeType) 79_reader.AssemblyName, 80_reader.Name, 81_reader.IsInjected, 82_reader.CreateUsingTypeConverter 97_reader.AssemblyName, 98_reader.Name.Substring(0, _reader.Name.LastIndexOf('.')), 99_reader.LocalName 116BamlTreeNode bamlNode = new BamlEventNode(_reader.Name, _reader.Value); 123_reader.AssemblyName, 124_reader.Name.Substring(0, _reader.Name.LastIndexOf('.')), 125_reader.LocalName, 126_reader.Value 134_reader.XmlNamespace, 135_reader.ClrNamespace, 136_reader.AssemblyName 143BamlTreeNode bamlNode = new BamlLiteralContentNode(_reader.Value); 150_reader.Value, 151_reader.TypeConverterAssemblyName, 152_reader.TypeConverterName 179throw new XamlParseException(SR.Get(SRID.UnRecognizedBamlNodeType, _reader.NodeType)); 184if (_reader.HasProperties) 192_reader.MoveToFirstProperty(); 195switch (_reader.NodeType) 199BamlTreeNode bamlNode = new BamlConnectionIdNode(_reader.ConnectionId); 206_reader.AssemblyName, 207_reader.Name.Substring(0, _reader.Name.LastIndexOf('.')), 208_reader.LocalName, 209_reader.Value, 210_reader.AttributeUsage 218if (propertyOccurrences.Contains(_reader.Name)) 221object occurrence = propertyOccurrences[_reader.Name]; 237propertyOccurrences[_reader.Name] = ++index; 242propertyOccurrences[_reader.Name] = bamlNode; 249if (_reader.Name == XamlReaderHelper.DefinitionUid) 252((BamlStartElementNode)_currentParent).Uid = _reader.Value; 256_reader.Name, 257_reader.Value 265_reader.LocalName, 266_reader.Value 274_reader.AssemblyName, 275_reader.Name.Substring(0, _reader.Name.LastIndexOf('.')), 276_reader.LocalName 285_reader.Name, 286_reader.Value 293throw new XamlParseException(SR.Get(SRID.UnRecognizedBamlNodeType, _reader.NodeType)); 296} while (_reader.MoveToNextProperty()); 301if (_reader.Read() || _bamlTreeStack.Count > 0)