6 overrides of Type
PresentationFramework (1)
System\Windows\Markup\Baml2006\Baml2006Reader.cs (1)
189
override public XamlType
Type
System.Xaml (5)
System\Xaml\InfosetObjects\XamlXmlReader.cs (1)
284
public override XamlType
Type
System\Xaml\ReaderBaseDelegate.cs (1)
42
public override XamlType
Type
System\Xaml\XamlBackgroundReader.cs (1)
280
public override XamlType
Type
System\Xaml\XamlObjectReader.cs (1)
137
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)
1001
Names.CurrentFrame.Type = templateReader.
Type
;
System\Windows\Markup\Baml2006\Baml2006Reader.cs (1)
191
get { return _xamlNodesReader.
Type
; }
System\Windows\Markup\WpfXamlLoader.cs (3)
291
XamlType xamlType = xamlReader.
Type
;
417
stack.CurrentFrame.Type = xamlReader.
Type
;
423
stack.CurrentFrame.Type = xamlReader.
Type
;
System\Windows\ResourceDictionary.cs (1)
1164
if (reader.NodeType == Xaml.XamlNodeType.StartObject && reader.
Type
== xamlTypeStaticResourceExtension)
System\Windows\TemplateContent.cs (11)
413
if (xamlReader.
Type
.UnderlyingType == typeof(StaticResourceExtension))
446
RootType = xamlReader.
Type
;
448
stack.Push(xamlReader.
Type
, null);
753
Debug.Assert(xamlReader.
Type
.UnderlyingType == typeof(StaticResourceExtension));
895
Type typeofValue = xamlReader.
Type
.UnderlyingType;
901
if (!IsTypeShareable(xamlReader.
Type
.UnderlyingType))
911
frames.Push(xamlReader.
Type
, null);
917
if (typeof(FrameworkTemplate).IsAssignableFrom(xamlReader.
Type
.UnderlyingType))
922
else if (typeof(Style).IsAssignableFrom(xamlReader.
Type
.UnderlyingType))
945
if (typeof(StaticResourceExtension).IsAssignableFrom(xamlReader.
Type
.UnderlyingType))
950
frames.Push(xamlReader.
Type
, null);
System.Xaml (5)
System\Xaml\XamlBackgroundReader.cs (1)
282
get { return _internalReader.
Type
; }
System\Xaml\XamlObjectReader.cs (2)
2892
nodes.Add(new ValueMarkupInfo { XamlNode = new XamlNode(XamlNodeType.StartObject, reader.
Type
) });
2904
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)
33
WriteStartObject(reader.
Type
);