6 overrides of Type
PresentationFramework (1)
System\Windows\Markup\Baml2006\Baml2006Reader.cs (1)
194
override public XamlType
Type
System.Xaml (5)
System\Xaml\InfosetObjects\XamlXmlReader.cs (1)
286
public override XamlType
Type
System\Xaml\ReaderBaseDelegate.cs (1)
42
public override XamlType
Type
System\Xaml\XamlBackgroundReader.cs (1)
281
public override XamlType
Type
System\Xaml\XamlObjectReader.cs (1)
142
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)
1010
Names.CurrentFrame.Type = templateReader.
Type
;
System\Windows\Markup\Baml2006\Baml2006Reader.cs (1)
196
get { return _xamlNodesReader.
Type
; }
System\Windows\Markup\WpfXamlLoader.cs (3)
292
XamlType xamlType = xamlReader.
Type
;
418
stack.CurrentFrame.Type = xamlReader.
Type
;
424
stack.CurrentFrame.Type = xamlReader.
Type
;
System\Windows\ResourceDictionary.cs (1)
1174
if (reader.NodeType == Xaml.XamlNodeType.StartObject && reader.
Type
== xamlTypeStaticResourceExtension)
System\Windows\TemplateContent.cs (11)
416
if (xamlReader.
Type
.UnderlyingType == typeof(StaticResourceExtension))
449
RootType = xamlReader.
Type
;
451
stack.Push(xamlReader.
Type
, null);
756
Debug.Assert(xamlReader.
Type
.UnderlyingType == typeof(StaticResourceExtension));
898
Type typeofValue = xamlReader.
Type
.UnderlyingType;
904
if (!IsTypeShareable(xamlReader.
Type
.UnderlyingType))
914
frames.Push(xamlReader.
Type
, null);
920
if (typeof(FrameworkTemplate).IsAssignableFrom(xamlReader.
Type
.UnderlyingType))
925
else if (typeof(Style).IsAssignableFrom(xamlReader.
Type
.UnderlyingType))
948
if (typeof(StaticResourceExtension).IsAssignableFrom(xamlReader.
Type
.UnderlyingType))
953
frames.Push(xamlReader.
Type
, null);
System.Xaml (5)
System\Xaml\XamlBackgroundReader.cs (1)
283
get { return _internalReader.
Type
; }
System\Xaml\XamlObjectReader.cs (2)
2897
nodes.Add(new ValueMarkupInfo { XamlNode = new XamlNode(XamlNodeType.StartObject, reader.
Type
) });
2909
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
);