31 references to NodeType
System.Xaml (31)
System\Xaml\InfosetObjects\XamlNodes.cs (10)
116string str = string.Create(TypeConverterHelper.InvariantEnglishUS, $"{NodeType}: "); 117switch(NodeType) 165if (NodeType == XamlNodeType.NamespaceDeclaration) 178if (NodeType == XamlNodeType.StartObject) 191if (NodeType == XamlNodeType.Value) 204if (NodeType == XamlNodeType.StartMember) 217if (NodeType == XamlNodeType.None) 230if (NodeType == XamlNodeType.None && _internalNodeType == InternalNodeType.EndOfStream) 243if (NodeType == XamlNodeType.None && _internalNodeType == InternalNodeType.EndOfAttributes) 256if (NodeType == XamlNodeType.None && _internalNodeType == InternalNodeType.LineInfo)
System\Xaml\InfosetObjects\XamlXmlReader.cs (3)
252if (_current.NodeType == XamlNodeType.None) 274while (_current.NodeType == XamlNodeType.None); 280get { return _current.NodeType; }
System\Xaml\Parser\NodeStreamSorter.cs (5)
135if (_current.NodeType == XamlNodeType.StartObject) 183switch (node.NodeType) 312switch (node.NodeType) 375switch (node.NodeType) 503rInfo.XamlNodeType = _originalNodesInOrder[i].NodeType;
System\Xaml\ReaderBaseDelegate.cs (1)
29get { return _currentNode.NodeType; }
System\Xaml\ReaderDelegate.cs (2)
35if (_currentNode.NodeType != XamlNodeType.None) 50while (_currentNode.NodeType == XamlNodeType.None);
System\Xaml\ReaderMultiIndexDelegate.cs (2)
49if (_currentNode.NodeType != XamlNodeType.None) 72while (_currentNode.NodeType == XamlNodeType.None);
System\Xaml\XamlObjectReader.cs (7)
93if (currentXamlNode.NodeType != XamlNodeType.None) 125return currentXamlNode.NodeType; 181return currentXamlNode.NodeType == XamlNodeType.StartObject ? currentInstance : null; 1137if ((XamlNode.NodeType == XamlNodeType.StartObject && !XamlNode.XamlType.IsMarkupExtension) 1138|| XamlNode.NodeType == XamlNodeType.GetObject) 1161if (XamlNode.NodeType == XamlNodeType.StartObject) 1769if (XamlNode.NodeType == XamlNodeType.GetObject)
System\Xaml\XamlXmlWriter.cs (1)
897switch (node.NodeType)