95 references to BamlNodeType
PresentationFramework (95)
MS\Internal\Globalization\BamlResourceDeserializer.cs (19)
51
if (_reader.NodeType !=
BamlNodeType
.StartDocument)
68
case
BamlNodeType
.StartElement:
79
case
BamlNodeType
.EndElement:
86
case
BamlNodeType
.StartComplexProperty:
99
case
BamlNodeType
.EndComplexProperty:
106
case
BamlNodeType
.Event:
112
case
BamlNodeType
.RoutedEvent:
123
case
BamlNodeType
.PIMapping:
133
case
BamlNodeType
.LiteralContent:
139
case
BamlNodeType
.Text:
150
case
BamlNodeType
.StartConstructor:
156
case
BamlNodeType
.EndConstructor:
162
case
BamlNodeType
.EndDocument:
189
case
BamlNodeType
.ConnectionId:
195
case
BamlNodeType
.Property:
240
case
BamlNodeType
.DefAttribute:
255
case
BamlNodeType
.XmlnsProperty:
264
case
BamlNodeType
.ContentProperty:
275
case
BamlNodeType
.PresentationOptionsAttribute:
MS\Internal\Globalization\BamlTreeMap.cs (10)
117
if (currentNode.NodeType ==
BamlNodeType
.StartElement)
129
if (currentNode.NodeType ==
BamlNodeType
.StartElement)
147
if (child.NodeType !=
BamlNodeType
.StartElement)
159
&& currentNode.NodeType ==
BamlNodeType
.StartElement
161
&& currentNode.Parent.NodeType ==
BamlNodeType
.StartDocument)
197
case
BamlNodeType
.StartElement:
211
case
BamlNodeType
.Property:
241
case
BamlNodeType
.LiteralContent:
560
Debug.Assert(node.NodeType ==
BamlNodeType
.StartElement);
608
if (child.NodeType ==
BamlNodeType
.Property)
MS\Internal\Globalization\BamlTreeNode.cs (23)
176
internal BamlTreeNode(
BamlNodeType
type)
218
internal
BamlNodeType
NodeType
335
protected
BamlNodeType
_nodeType; // node type
375
internal BamlStartDocumentNode() : base(
BamlNodeType
.StartDocument) { }
419
internal BamlEndDocumentNode() : base(
BamlNodeType
.EndDocument) { }
436
internal BamlConnectionIdNode(Int32 connectionId) : base(
BamlNodeType
.ConnectionId)
464
) : base(
BamlNodeType
.StartElement)
507
if (_children[i].NodeType ==
BamlNodeType
.Property)
599
internal BamlEndElementNode() : base(
BamlNodeType
.EndElement)
623
) : base(
BamlNodeType
.XmlnsProperty)
652
) : base(
BamlNodeType
.StartComplexProperty)
728
internal BamlEndComplexPropertyNode() : base(
BamlNodeType
.EndComplexProperty)
758
_nodeType =
BamlNodeType
.Property;
811
internal BamlLiteralContentNode(string literalContent) : base(
BamlNodeType
.LiteralContent)
848
) : base(
BamlNodeType
.Text)
885
) : base(
BamlNodeType
.RoutedEvent)
927
) : base(
BamlNodeType
.Event)
956
internal BamlDefAttributeNode(string name, string value) : base(
BamlNodeType
.DefAttribute)
985
) : base(
BamlNodeType
.PIMapping)
1020
internal BamlStartConstructorNode() : base(
BamlNodeType
.StartConstructor)
1040
internal BamlEndConstructorNode() : base(
BamlNodeType
.EndConstructor)
1064
) : base(
BamlNodeType
.ContentProperty)
1097
: base(
BamlNodeType
.PresentationOptionsAttribute)
MS\Internal\Globalization\BamlTreeUpdater.cs (9)
162
case
BamlNodeType
.LiteralContent:
185
case
BamlNodeType
.Property:
208
case
BamlNodeType
.StartElement:
271
if (node.NodeType ==
BamlNodeType
.StartElement)
303
case
BamlNodeType
.StartElement:
334
if (newNode.NodeType ==
BamlNodeType
.Text)
343
if (newNode.NodeType ==
BamlNodeType
.StartElement)
350
case
BamlNodeType
.Text:
371
if (newNode.NodeType ==
BamlNodeType
.Text)
MS\Internal\Globalization\LocalizableResourceBuilder.cs (12)
52
case
BamlNodeType
.StartElement:
60
case
BamlNodeType
.LiteralContent:
70
case
BamlNodeType
.Property:
143
case
BamlNodeType
.Property:
168
case
BamlNodeType
.LiteralContent:
175
case
BamlNodeType
.StartElement:
187
case
BamlNodeType
.StartElement:
201
case
BamlNodeType
.Text:
465
case
BamlNodeType
.StartElement:
466
case
BamlNodeType
.LiteralContent:
486
case
BamlNodeType
.Property:
487
case
BamlNodeType
.StartComplexProperty:
System\Windows\Markup\BamlReader.cs (22)
164
_bamlNodeType =
BamlNodeType
.None;
224
public
BamlNodeType
NodeType
325
private
BamlNodeType
NodeTypeInternal
410
NodeTypeInternal =
BamlNodeType
.XmlnsProperty;
414
NodeTypeInternal =
BamlNodeType
.DefAttribute;
418
NodeTypeInternal =
BamlNodeType
.PresentationOptionsAttribute;
422
NodeTypeInternal =
BamlNodeType
.Property;
447
NodeTypeInternal =
BamlNodeType
.ContentProperty;
463
NodeTypeInternal =
BamlNodeType
.ConnectionId;
542
NodeTypeInternal =
BamlNodeType
.None;
1829
NodeTypeInternal =
BamlNodeType
.StartDocument;
1864
NodeTypeInternal =
BamlNodeType
.EndDocument;
1910
NodeTypeInternal =
BamlNodeType
.PIMapping;
1938
NodeTypeInternal =
BamlNodeType
.LiteralContent;
1967
NodeTypeInternal =
BamlNodeType
.StartElement;
2049
NodeTypeInternal =
BamlNodeType
.EndElement;
2086
NodeTypeInternal =
BamlNodeType
.StartComplexProperty;
2156
NodeTypeInternal =
BamlNodeType
.EndComplexProperty;
2210
NodeTypeInternal =
BamlNodeType
.Text;
2228
NodeTypeInternal =
BamlNodeType
.StartConstructor;
2252
NodeTypeInternal =
BamlNodeType
.EndConstructor;
2810
private
BamlNodeType
_bamlNodeType;