6 overrides of Type
PresentationFramework (1)
System\Windows\Markup\Baml2006\Baml2006Reader.cs (1)
189
public override XamlType
Type
System.Xaml (5)
System\Xaml\InfosetObjects\XamlXmlReader.cs (1)
292
public override XamlType
Type
System\Xaml\ReaderBaseDelegate.cs (1)
41
public override XamlType
Type
System\Xaml\XamlBackgroundReader.cs (1)
290
public override XamlType
Type
System\Xaml\XamlObjectReader.cs (1)
136
public override XamlType
Type
System\Xaml\XamlSubreader.cs (1)
56
public override XamlType
Type
22 references to Type
PresentationFramework (17)
System\Windows\FrameworkTemplate.cs (1)
995
Names.CurrentFrame.Type = templateReader.
Type
;
System\Windows\Markup\Baml2006\Baml2006Reader.cs (1)
191
get { return _xamlNodesReader.
Type
; }
System\Windows\Markup\WpfXamlLoader.cs (3)
287
XamlType xamlType = xamlReader.
Type
;
410
stack.CurrentFrame.Type = xamlReader.
Type
;
416
stack.CurrentFrame.Type = xamlReader.
Type
;
System\Windows\ResourceDictionary.cs (1)
1222
if (reader.NodeType == Xaml.XamlNodeType.StartObject && reader.
Type
== xamlTypeStaticResourceExtension)
System\Windows\TemplateContent.cs (11)
411
if (xamlReader.
Type
.UnderlyingType == typeof(StaticResourceExtension))
444
RootType = xamlReader.
Type
;
446
stack.Push(xamlReader.
Type
, null);
749
Debug.Assert(xamlReader.
Type
.UnderlyingType == typeof(StaticResourceExtension));
891
Type typeofValue = xamlReader.
Type
.UnderlyingType;
897
if (!IsTypeShareable(xamlReader.
Type
.UnderlyingType))
907
frames.Push(xamlReader.
Type
, null);
913
if (typeof(FrameworkTemplate).IsAssignableFrom(xamlReader.
Type
.UnderlyingType))
918
else if (typeof(Style).IsAssignableFrom(xamlReader.
Type
.UnderlyingType))
941
if (typeof(StaticResourceExtension).IsAssignableFrom(xamlReader.
Type
.UnderlyingType))
946
frames.Push(xamlReader.
Type
, null);
System.Xaml (5)
System\Xaml\XamlBackgroundReader.cs (1)
292
get { return _internalReader.
Type
; }
System\Xaml\XamlObjectReader.cs (2)
2913
nodes.Add(new ValueMarkupInfo { XamlNode = new XamlNode(XamlNodeType.StartObject, reader.
Type
) });
2925
nodes.Add(new ValueMarkupInfo{ XamlNode = new XamlNode(XamlNodeType.StartObject, reader.
Type
) });
System\Xaml\XamlSubreader.cs (1)
58
get { return IsEmpty ? null : _reader.
Type
; }
System\Xaml\XamlWriter.cs (1)
32
WriteStartObject(reader.
Type
);