6 overrides of NodeType
PresentationFramework (1)
System\Windows\Markup\Baml2006\Baml2006Reader.cs (1)
173override public XamlNodeType NodeType
System.Xaml (5)
System\Xaml\InfosetObjects\XamlXmlReader.cs (1)
271public override XamlNodeType NodeType
System\Xaml\ReaderBaseDelegate.cs (1)
27public override XamlNodeType NodeType
System\Xaml\XamlBackgroundReader.cs (1)
266public override XamlNodeType NodeType
System\Xaml\XamlObjectReader.cs (1)
126public override XamlNodeType NodeType
System\Xaml\XamlSubreader.cs (1)
41public override XamlNodeType NodeType
44 references to NodeType
PresentationFramework (29)
System\Windows\FrameworkTemplate.cs (1)
999switch (templateReader.NodeType)
System\Windows\Markup\Baml2006\Baml2006Reader.cs (3)
164_xamlNodesReader.NodeType != XamlNodeType.EndObject) 175get { return _xamlNodesReader.NodeType; } 2692switch(reader.NodeType)
System\Windows\Markup\WpfXamlLoader.cs (2)
197switch (xamlReader.NodeType) 286switch (xamlReader.NodeType)
System\Windows\Markup\XamlReader.cs (4)
419if (xamlReader.NodeType == System.Xaml.XamlNodeType.StartMember) 430else if (xamlReader.NodeType == System.Xaml.XamlNodeType.Value) 451else if (xamlReader.NodeType == System.Xaml.XamlNodeType.EndMember) 613if (xamlReader.NodeType == System.Xaml.XamlNodeType.Value && _stack.CurrentFrame.Property == synchronousRecordProperty)
System\Windows\ResourceDictionary.cs (5)
1174if (reader.NodeType == Xaml.XamlNodeType.StartObject && reader.Type == xamlTypeStaticResourceExtension) 1178while (reader.NodeType == Xaml.XamlNodeType.StartMember && 1185if (reader.NodeType == Xaml.XamlNodeType.StartMember) 1189if (reader.NodeType == Xaml.XamlNodeType.StartObject) 1195else if (reader.NodeType == Xaml.XamlNodeType.Value)
System\Windows\TemplateContent.cs (14)
408switch (xamlReader.NodeType) 755Debug.Assert(xamlReader.NodeType == Xaml.XamlNodeType.StartObject); 764switch (xamlReader.NodeType) 801Debug.Assert(xamlReader.NodeType == System.Xaml.XamlNodeType.StartMember); 836if (xamlReader.NodeType == System.Xaml.XamlNodeType.Value) 882else if (xamlReader.NodeType == System.Xaml.XamlNodeType.StartObject 883|| xamlReader.NodeType == System.Xaml.XamlNodeType.NamespaceDeclaration) 886if (xamlReader.NodeType == System.Xaml.XamlNodeType.NamespaceDeclaration) 889while (xamlReader.NodeType == System.Xaml.XamlNodeType.NamespaceDeclaration) 896Debug.Assert(xamlReader.NodeType == System.Xaml.XamlNodeType.StartObject); 945switch (xamlReader.NodeType) 1010else if (xamlReader.NodeType == System.Xaml.XamlNodeType.GetObject) 1049System.Xaml.XamlNodeType nodeType = reader.NodeType; 1155Debug.Assert(xamlReader.NodeType == System.Xaml.XamlNodeType.EndMember);
System.Xaml (15)
System\Xaml\XamlBackgroundReader.cs (1)
268get { return _internalReader.NodeType; }
System\Xaml\XamlObjectReader.cs (7)
2879while (reader.Read() && reader.NodeType != XamlNodeType.StartObject) 2881if (reader.NodeType != XamlNodeType.NamespaceDeclaration) 2883throw new XamlObjectReaderException(SR.Format(SR.XamlFactoryInvalidXamlNode, reader.NodeType)); 2892if (reader.NodeType != XamlNodeType.StartObject) 2894throw new XamlObjectReaderException(SR.Format(SR.XamlFactoryInvalidXamlNode, reader.NodeType)); 2902switch (reader.NodeType) 2933throw 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)