31 references to NodeType
System.Xaml (31)
System\Xaml\InfosetObjects\XamlNodes.cs (10)
116string str = string.Create(TypeConverterHelper.InvariantEnglishUS, $"{NodeType}: "); 117switch(NodeType) 163if (NodeType == XamlNodeType.NamespaceDeclaration) 175if (NodeType == XamlNodeType.StartObject) 187if (NodeType == XamlNodeType.Value) 199if (NodeType == XamlNodeType.StartMember) 211if (NodeType == XamlNodeType.None) 223if (NodeType == XamlNodeType.None && _internalNodeType == InternalNodeType.EndOfStream) 235if (NodeType == XamlNodeType.None && _internalNodeType == InternalNodeType.EndOfAttributes) 247if (NodeType == XamlNodeType.None && _internalNodeType == InternalNodeType.LineInfo)
System\Xaml\InfosetObjects\XamlXmlReader.cs (3)
244if (_current.NodeType == XamlNodeType.None) 265} while (_current.NodeType == XamlNodeType.None); 271get { return _current.NodeType; }
System\Xaml\Parser\NodeStreamSorter.cs (5)
132if (_current.NodeType == XamlNodeType.StartObject) 178switch (node.NodeType) 302switch (node.NodeType) 360switch (node.NodeType) 477rInfo.XamlNodeType = _originalNodesInOrder[i].NodeType;
System\Xaml\ReaderBaseDelegate.cs (1)
29get { return _currentNode.NodeType; }
System\Xaml\ReaderDelegate.cs (2)
35if (_currentNode.NodeType != XamlNodeType.None) 48} while (_currentNode.NodeType == XamlNodeType.None);
System\Xaml\ReaderMultiIndexDelegate.cs (2)
49if (_currentNode.NodeType != XamlNodeType.None) 70} while (_currentNode.NodeType == XamlNodeType.None);
System\Xaml\XamlObjectReader.cs (7)
93if (currentXamlNode.NodeType != XamlNodeType.None) 125return currentXamlNode.NodeType; 181return currentXamlNode.NodeType == XamlNodeType.StartObject ? currentInstance : null; 1135if ((XamlNode.NodeType == XamlNodeType.StartObject && !XamlNode.XamlType.IsMarkupExtension) 1136|| XamlNode.NodeType == XamlNodeType.GetObject) 1158if (XamlNode.NodeType == XamlNodeType.StartObject) 1759if (XamlNode.NodeType == XamlNodeType.GetObject)
System\Xaml\XamlXmlWriter.cs (1)
881switch (node.NodeType)