6 overrides of NodeType
PresentationFramework (1)
System\Windows\Markup\Baml2006\Baml2006Reader.cs (1)
169override public XamlNodeType NodeType
System.Xaml (5)
System\Xaml\InfosetObjects\XamlXmlReader.cs (1)
269public override XamlNodeType NodeType
System\Xaml\ReaderBaseDelegate.cs (1)
27public override XamlNodeType NodeType
System\Xaml\XamlBackgroundReader.cs (1)
265public override XamlNodeType NodeType
System\Xaml\XamlObjectReader.cs (1)
121public override XamlNodeType NodeType
System\Xaml\XamlSubreader.cs (1)
41public override XamlNodeType NodeType
44 references to NodeType
PresentationFramework (29)
System\Windows\FrameworkTemplate.cs (1)
990switch (templateReader.NodeType)
System\Windows\Markup\Baml2006\Baml2006Reader.cs (3)
160_xamlNodesReader.NodeType != XamlNodeType.EndObject) 171get { return _xamlNodesReader.NodeType; } 2688switch(reader.NodeType)
System\Windows\Markup\WpfXamlLoader.cs (2)
196switch (xamlReader.NodeType) 285switch (xamlReader.NodeType)
System\Windows\Markup\XamlReader.cs (4)
406if (xamlReader.NodeType == System.Xaml.XamlNodeType.StartMember) 417else if (xamlReader.NodeType == System.Xaml.XamlNodeType.Value) 438else if (xamlReader.NodeType == System.Xaml.XamlNodeType.EndMember) 600if (xamlReader.NodeType == System.Xaml.XamlNodeType.Value && _stack.CurrentFrame.Property == synchronousRecordProperty)
System\Windows\ResourceDictionary.cs (5)
1164if (reader.NodeType == Xaml.XamlNodeType.StartObject && reader.Type == xamlTypeStaticResourceExtension) 1168while (reader.NodeType == Xaml.XamlNodeType.StartMember && 1175if (reader.NodeType == Xaml.XamlNodeType.StartMember) 1179if (reader.NodeType == Xaml.XamlNodeType.StartObject) 1185else if (reader.NodeType == Xaml.XamlNodeType.Value)
System\Windows\TemplateContent.cs (14)
405switch (xamlReader.NodeType) 752Debug.Assert(xamlReader.NodeType == Xaml.XamlNodeType.StartObject); 761switch (xamlReader.NodeType) 798Debug.Assert(xamlReader.NodeType == System.Xaml.XamlNodeType.StartMember); 833if (xamlReader.NodeType == System.Xaml.XamlNodeType.Value) 879else if (xamlReader.NodeType == System.Xaml.XamlNodeType.StartObject 880|| xamlReader.NodeType == System.Xaml.XamlNodeType.NamespaceDeclaration) 883if (xamlReader.NodeType == System.Xaml.XamlNodeType.NamespaceDeclaration) 886while (xamlReader.NodeType == System.Xaml.XamlNodeType.NamespaceDeclaration) 893Debug.Assert(xamlReader.NodeType == System.Xaml.XamlNodeType.StartObject); 942switch (xamlReader.NodeType) 1007else if (xamlReader.NodeType == System.Xaml.XamlNodeType.GetObject) 1046System.Xaml.XamlNodeType nodeType = reader.NodeType; 1152Debug.Assert(xamlReader.NodeType == System.Xaml.XamlNodeType.EndMember);
System.Xaml (15)
System\Xaml\XamlBackgroundReader.cs (1)
267get { return _internalReader.NodeType; }
System\Xaml\XamlObjectReader.cs (7)
2874while (reader.Read() && reader.NodeType != XamlNodeType.StartObject) 2876if (reader.NodeType != XamlNodeType.NamespaceDeclaration) 2878throw new XamlObjectReaderException(SR.Format(SR.XamlFactoryInvalidXamlNode, reader.NodeType)); 2887if (reader.NodeType != XamlNodeType.StartObject) 2889throw new XamlObjectReaderException(SR.Format(SR.XamlFactoryInvalidXamlNode, reader.NodeType)); 2897switch (reader.NodeType) 2928throw new InvalidOperationException(SR.Format(SR.XamlFactoryInvalidXamlNode, reader.NodeType));
System\Xaml\XamlReader.cs (3)
27switch(NodeType) 81if(NodeType != startNodeType) 90XamlNodeType nodeType = NodeType;
System\Xaml\XamlSubreader.cs (3)
25_rootIsStartMember = (reader.NodeType == XamlNodeType.StartMember); 43get { return IsEmpty ? XamlNodeType.None : _reader.NodeType; } 126XamlNodeType nodeType = _reader.NodeType;
System\Xaml\XamlWriter.cs (1)
26switch (reader.NodeType)