95 references to BamlNodeType
PresentationFramework (95)
MS\Internal\Globalization\BamlResourceDeserializer.cs (19)
50
if (_reader.NodeType !=
BamlNodeType
.StartDocument)
67
case
BamlNodeType
.StartElement:
78
case
BamlNodeType
.EndElement:
85
case
BamlNodeType
.StartComplexProperty:
98
case
BamlNodeType
.EndComplexProperty:
105
case
BamlNodeType
.Event:
111
case
BamlNodeType
.RoutedEvent:
122
case
BamlNodeType
.PIMapping:
132
case
BamlNodeType
.LiteralContent:
138
case
BamlNodeType
.Text:
149
case
BamlNodeType
.StartConstructor:
155
case
BamlNodeType
.EndConstructor:
161
case
BamlNodeType
.EndDocument:
188
case
BamlNodeType
.ConnectionId:
194
case
BamlNodeType
.Property:
239
case
BamlNodeType
.DefAttribute:
254
case
BamlNodeType
.XmlnsProperty:
263
case
BamlNodeType
.ContentProperty:
274
case
BamlNodeType
.PresentationOptionsAttribute:
MS\Internal\Globalization\BamlTreeMap.cs (10)
116
if (currentNode.NodeType ==
BamlNodeType
.StartElement)
128
if (currentNode.NodeType ==
BamlNodeType
.StartElement)
146
if (child.NodeType !=
BamlNodeType
.StartElement)
158
&& currentNode.NodeType ==
BamlNodeType
.StartElement
160
&& currentNode.Parent.NodeType ==
BamlNodeType
.StartDocument)
196
case
BamlNodeType
.StartElement:
210
case
BamlNodeType
.Property:
240
case
BamlNodeType
.LiteralContent:
559
Debug.Assert(node.NodeType ==
BamlNodeType
.StartElement);
607
if (child.NodeType ==
BamlNodeType
.Property)
MS\Internal\Globalization\BamlTreeNode.cs (23)
175
internal BamlTreeNode(
BamlNodeType
type)
217
internal
BamlNodeType
NodeType
334
protected
BamlNodeType
_nodeType; // node type
374
internal BamlStartDocumentNode() : base(
BamlNodeType
.StartDocument) { }
418
internal BamlEndDocumentNode() : base(
BamlNodeType
.EndDocument) { }
435
internal BamlConnectionIdNode(Int32 connectionId) : base(
BamlNodeType
.ConnectionId)
463
) : base(
BamlNodeType
.StartElement)
506
if (_children[i].NodeType ==
BamlNodeType
.Property)
598
internal BamlEndElementNode() : base(
BamlNodeType
.EndElement)
622
) : base(
BamlNodeType
.XmlnsProperty)
651
) : base(
BamlNodeType
.StartComplexProperty)
727
internal BamlEndComplexPropertyNode() : base(
BamlNodeType
.EndComplexProperty)
757
_nodeType =
BamlNodeType
.Property;
810
internal BamlLiteralContentNode(string literalContent) : base(
BamlNodeType
.LiteralContent)
847
) : base(
BamlNodeType
.Text)
884
) : base(
BamlNodeType
.RoutedEvent)
926
) : base(
BamlNodeType
.Event)
955
internal BamlDefAttributeNode(string name, string value) : base(
BamlNodeType
.DefAttribute)
984
) : base(
BamlNodeType
.PIMapping)
1019
internal BamlStartConstructorNode() : base(
BamlNodeType
.StartConstructor)
1039
internal BamlEndConstructorNode() : base(
BamlNodeType
.EndConstructor)
1063
) : base(
BamlNodeType
.ContentProperty)
1096
: base(
BamlNodeType
.PresentationOptionsAttribute)
MS\Internal\Globalization\BamlTreeUpdater.cs (9)
161
case
BamlNodeType
.LiteralContent:
184
case
BamlNodeType
.Property:
207
case
BamlNodeType
.StartElement:
270
if (node.NodeType ==
BamlNodeType
.StartElement)
302
case
BamlNodeType
.StartElement:
333
if (newNode.NodeType ==
BamlNodeType
.Text)
342
if (newNode.NodeType ==
BamlNodeType
.StartElement)
349
case
BamlNodeType
.Text:
370
if (newNode.NodeType ==
BamlNodeType
.Text)
MS\Internal\Globalization\LocalizableResourceBuilder.cs (12)
51
case
BamlNodeType
.StartElement:
59
case
BamlNodeType
.LiteralContent:
69
case
BamlNodeType
.Property:
142
case
BamlNodeType
.Property:
167
case
BamlNodeType
.LiteralContent:
174
case
BamlNodeType
.StartElement:
186
case
BamlNodeType
.StartElement:
200
case
BamlNodeType
.Text:
464
case
BamlNodeType
.StartElement:
465
case
BamlNodeType
.LiteralContent:
485
case
BamlNodeType
.Property:
486
case
BamlNodeType
.StartComplexProperty:
System\Windows\Markup\BamlReader.cs (22)
163
_bamlNodeType =
BamlNodeType
.None;
223
public
BamlNodeType
NodeType
324
private
BamlNodeType
NodeTypeInternal
409
NodeTypeInternal =
BamlNodeType
.XmlnsProperty;
413
NodeTypeInternal =
BamlNodeType
.DefAttribute;
417
NodeTypeInternal =
BamlNodeType
.PresentationOptionsAttribute;
421
NodeTypeInternal =
BamlNodeType
.Property;
446
NodeTypeInternal =
BamlNodeType
.ContentProperty;
462
NodeTypeInternal =
BamlNodeType
.ConnectionId;
541
NodeTypeInternal =
BamlNodeType
.None;
1825
NodeTypeInternal =
BamlNodeType
.StartDocument;
1860
NodeTypeInternal =
BamlNodeType
.EndDocument;
1906
NodeTypeInternal =
BamlNodeType
.PIMapping;
1934
NodeTypeInternal =
BamlNodeType
.LiteralContent;
1963
NodeTypeInternal =
BamlNodeType
.StartElement;
2045
NodeTypeInternal =
BamlNodeType
.EndElement;
2082
NodeTypeInternal =
BamlNodeType
.StartComplexProperty;
2152
NodeTypeInternal =
BamlNodeType
.EndComplexProperty;
2206
NodeTypeInternal =
BamlNodeType
.Text;
2224
NodeTypeInternal =
BamlNodeType
.StartConstructor;
2248
NodeTypeInternal =
BamlNodeType
.EndConstructor;
2806
private
BamlNodeType
_bamlNodeType;