95 references to BamlNodeType
PresentationFramework (95)
MS\Internal\Globalization\BamlResourceDeserializer.cs (19)
58
if (_reader.NodeType !=
BamlNodeType
.StartDocument)
75
case
BamlNodeType
.StartElement:
86
case
BamlNodeType
.EndElement:
93
case
BamlNodeType
.StartComplexProperty:
106
case
BamlNodeType
.EndComplexProperty:
113
case
BamlNodeType
.Event:
119
case
BamlNodeType
.RoutedEvent:
130
case
BamlNodeType
.PIMapping:
140
case
BamlNodeType
.LiteralContent:
146
case
BamlNodeType
.Text:
157
case
BamlNodeType
.StartConstructor:
163
case
BamlNodeType
.EndConstructor:
169
case
BamlNodeType
.EndDocument:
196
case
BamlNodeType
.ConnectionId:
202
case
BamlNodeType
.Property:
247
case
BamlNodeType
.DefAttribute:
262
case
BamlNodeType
.XmlnsProperty:
271
case
BamlNodeType
.ContentProperty:
282
case
BamlNodeType
.PresentationOptionsAttribute:
MS\Internal\Globalization\BamlTreeMap.cs (10)
132
if (currentNode.NodeType ==
BamlNodeType
.StartElement)
144
if (currentNode.NodeType ==
BamlNodeType
.StartElement)
162
if (child.NodeType !=
BamlNodeType
.StartElement)
178
&& currentNode.NodeType ==
BamlNodeType
.StartElement
180
&& currentNode.Parent.NodeType ==
BamlNodeType
.StartDocument)
216
case
BamlNodeType
.StartElement:
230
case
BamlNodeType
.Property:
260
case
BamlNodeType
.LiteralContent:
576
Debug.Assert(node.NodeType ==
BamlNodeType
.StartElement);
622
if (child.NodeType ==
BamlNodeType
.Property)
MS\Internal\Globalization\BamlTreeNode.cs (23)
178
internal BamlTreeNode(
BamlNodeType
type)
220
internal
BamlNodeType
NodeType
337
protected
BamlNodeType
_nodeType; // node type
377
internal BamlStartDocumentNode() : base(
BamlNodeType
.StartDocument) { }
419
internal BamlEndDocumentNode() : base(
BamlNodeType
.EndDocument) { }
436
internal BamlConnectionIdNode(Int32 connectionId) : base(
BamlNodeType
.ConnectionId)
464
) : base(
BamlNodeType
.StartElement)
505
if (_children[i].NodeType ==
BamlNodeType
.Property)
597
internal BamlEndElementNode() : base(
BamlNodeType
.EndElement)
621
) : base(
BamlNodeType
.XmlnsProperty)
650
) : base(
BamlNodeType
.StartComplexProperty)
726
internal BamlEndComplexPropertyNode() : base(
BamlNodeType
.EndComplexProperty)
756
_nodeType =
BamlNodeType
.Property;
809
internal BamlLiteralContentNode(string literalContent) : base(
BamlNodeType
.LiteralContent)
846
) : base(
BamlNodeType
.Text)
883
) : base(
BamlNodeType
.RoutedEvent)
925
) : base(
BamlNodeType
.Event)
954
internal BamlDefAttributeNode(string name, string value) : base(
BamlNodeType
.DefAttribute)
983
) : base(
BamlNodeType
.PIMapping)
1018
internal BamlStartConstructorNode() : base(
BamlNodeType
.StartConstructor)
1038
internal BamlEndConstructorNode() : base(
BamlNodeType
.EndConstructor)
1062
) : base(
BamlNodeType
.ContentProperty)
1095
: base(
BamlNodeType
.PresentationOptionsAttribute)
MS\Internal\Globalization\BamlTreeUpdater.cs (9)
188
case
BamlNodeType
.LiteralContent:
211
case
BamlNodeType
.Property:
234
case
BamlNodeType
.StartElement:
296
if (node.NodeType ==
BamlNodeType
.StartElement)
328
case
BamlNodeType
.StartElement:
359
if (newNode.NodeType ==
BamlNodeType
.Text)
368
if (newNode.NodeType ==
BamlNodeType
.StartElement)
375
case
BamlNodeType
.Text:
396
if (newNode.NodeType ==
BamlNodeType
.Text)
MS\Internal\Globalization\LocalizableResourceBuilder.cs (12)
56
case
BamlNodeType
.StartElement:
64
case
BamlNodeType
.LiteralContent:
74
case
BamlNodeType
.Property:
145
case
BamlNodeType
.Property:
170
case
BamlNodeType
.LiteralContent:
177
case
BamlNodeType
.StartElement:
189
case
BamlNodeType
.StartElement:
203
case
BamlNodeType
.Text:
467
case
BamlNodeType
.StartElement:
468
case
BamlNodeType
.LiteralContent:
488
case
BamlNodeType
.Property:
489
case
BamlNodeType
.StartComplexProperty:
System\Windows\Markup\BamlReader.cs (22)
172
_bamlNodeType =
BamlNodeType
.None;
232
public
BamlNodeType
NodeType
333
private
BamlNodeType
NodeTypeInternal
418
NodeTypeInternal =
BamlNodeType
.XmlnsProperty;
422
NodeTypeInternal =
BamlNodeType
.DefAttribute;
426
NodeTypeInternal =
BamlNodeType
.PresentationOptionsAttribute;
430
NodeTypeInternal =
BamlNodeType
.Property;
455
NodeTypeInternal =
BamlNodeType
.ContentProperty;
471
NodeTypeInternal =
BamlNodeType
.ConnectionId;
550
NodeTypeInternal =
BamlNodeType
.None;
1821
NodeTypeInternal =
BamlNodeType
.StartDocument;
1854
NodeTypeInternal =
BamlNodeType
.EndDocument;
1900
NodeTypeInternal =
BamlNodeType
.PIMapping;
1928
NodeTypeInternal =
BamlNodeType
.LiteralContent;
1957
NodeTypeInternal =
BamlNodeType
.StartElement;
2037
NodeTypeInternal =
BamlNodeType
.EndElement;
2074
NodeTypeInternal =
BamlNodeType
.StartComplexProperty;
2144
NodeTypeInternal =
BamlNodeType
.EndComplexProperty;
2198
NodeTypeInternal =
BamlNodeType
.Text;
2216
NodeTypeInternal =
BamlNodeType
.StartConstructor;
2238
NodeTypeInternal =
BamlNodeType
.EndConstructor;
2794
private
BamlNodeType
_bamlNodeType;