24 references to NamespaceDeclaration
PresentationFramework (6)
System\Windows\FrameworkTemplate.cs (1)
993
case System.Xaml.XamlNodeType.
NamespaceDeclaration
:
System\Windows\Markup\WpfXamlLoader.cs (1)
198
case System.Xaml.XamlNodeType.
NamespaceDeclaration
:
System\Windows\TemplateContent.cs (4)
719
case System.Xaml.XamlNodeType.
NamespaceDeclaration
:
880
|| xamlReader.NodeType == System.Xaml.XamlNodeType.
NamespaceDeclaration
)
883
if (xamlReader.NodeType == System.Xaml.XamlNodeType.
NamespaceDeclaration
)
886
while (xamlReader.NodeType == System.Xaml.XamlNodeType.
NamespaceDeclaration
)
System.Xaml (18)
System\Xaml\InfosetObjects\XamlNodes.cs (3)
73
case XamlNodeType.
NamespaceDeclaration
:
131
case XamlNodeType.
NamespaceDeclaration
:
163
if (NodeType == XamlNodeType.
NamespaceDeclaration
)
System\Xaml\Parser\NodeStreamSorter.cs (3)
180
case XamlNodeType.
NamespaceDeclaration
:
212
XamlNode node = new XamlNode(XamlNodeType.
NamespaceDeclaration
, new NamespaceDeclaration(uriString, prefix));
481
case XamlNodeType.
NamespaceDeclaration
:
System\Xaml\Parser\XamlPullParser.cs (2)
770
XamlNode addNs = new XamlNode(XamlNodeType.
NamespaceDeclaration
, new NamespaceDeclaration(xamlNs, prefix));
994
yield return new XamlNode(XamlNodeType.
NamespaceDeclaration
, nsDecl);
System\Xaml\WriterDelegate.cs (1)
67
_addDelegate(XamlNodeType.
NamespaceDeclaration
, namespaceDeclaration);
System\Xaml\XamlObjectReader.cs (5)
2539
return namespaceMapList.ConvertAll<XamlNode>(pair => new XamlNode(XamlNodeType.
NamespaceDeclaration
,
2876
if (reader.NodeType != XamlNodeType.
NamespaceDeclaration
)
2883
nodes.Add(new ValueMarkupInfo{ XamlNode = new XamlNode(XamlNodeType.
NamespaceDeclaration
, reader.Namespace) });
2899
case XamlNodeType.
NamespaceDeclaration
:
2900
nodes.Add(new ValueMarkupInfo{ XamlNode = new XamlNode(XamlNodeType.
NamespaceDeclaration
, reader.Namespace) });
System\Xaml\XamlReader.cs (1)
29
case XamlNodeType.
NamespaceDeclaration
:
System\Xaml\XamlWriter.cs (1)
28
case XamlNodeType.
NamespaceDeclaration
:
System\Xaml\XamlXmlWriter.cs (2)
883
case XamlNodeType.
NamespaceDeclaration
:
1845
writer.meNodesStack.Peek().Add(new XamlNode(XamlNodeType.
NamespaceDeclaration
, namespaceDeclaration));