31 references to NodeType
System.Xaml (31)
System\Xaml\InfosetObjects\XamlNodes.cs (10)
118string str = String.Format(TypeConverterHelper.InvariantEnglishUS, "{0}: ", NodeType); 119switch(NodeType) 165if (NodeType == XamlNodeType.NamespaceDeclaration) 177if (NodeType == XamlNodeType.StartObject) 189if (NodeType == XamlNodeType.Value) 201if (NodeType == XamlNodeType.StartMember) 213if (NodeType == XamlNodeType.None) 225if (NodeType == XamlNodeType.None && _internalNodeType == InternalNodeType.EndOfStream) 237if (NodeType == XamlNodeType.None && _internalNodeType == InternalNodeType.EndOfAttributes) 249if (NodeType == XamlNodeType.None && _internalNodeType == InternalNodeType.LineInfo)
System\Xaml\InfosetObjects\XamlXmlReader.cs (3)
246if (_current.NodeType == XamlNodeType.None) 267} while (_current.NodeType == XamlNodeType.None); 273get { return _current.NodeType; }
System\Xaml\Parser\NodeStreamSorter.cs (5)
135if (_current.NodeType == XamlNodeType.StartObject) 181switch (node.NodeType) 305switch (node.NodeType) 363switch (node.NodeType) 480rInfo.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)
98if (currentXamlNode.NodeType != XamlNodeType.None) 130return currentXamlNode.NodeType; 186return currentXamlNode.NodeType == XamlNodeType.StartObject ? currentInstance : null; 1140if ((XamlNode.NodeType == XamlNodeType.StartObject && !XamlNode.XamlType.IsMarkupExtension) 1141|| XamlNode.NodeType == XamlNodeType.GetObject) 1163if (XamlNode.NodeType == XamlNodeType.StartObject) 1764if (XamlNode.NodeType == XamlNodeType.GetObject)
System\Xaml\XamlXmlWriter.cs (1)
883switch (node.NodeType)