6 overrides of Type
PresentationFramework (1)
System\Windows\Markup\Baml2006\Baml2006Reader.cs (1)
193override public XamlType Type
System.Xaml (5)
System\Xaml\InfosetObjects\XamlXmlReader.cs (1)
286public override XamlType Type
System\Xaml\ReaderBaseDelegate.cs (1)
42public override XamlType Type
System\Xaml\XamlBackgroundReader.cs (1)
281public override XamlType Type
System\Xaml\XamlObjectReader.cs (1)
142public override XamlType Type
System\Xaml\XamlSubreader.cs (1)
56public override XamlType Type
22 references to Type
PresentationFramework (17)
System\Windows\FrameworkTemplate.cs (1)
1010Names.CurrentFrame.Type = templateReader.Type;
System\Windows\Markup\Baml2006\Baml2006Reader.cs (1)
195get { return _xamlNodesReader.Type; }
System\Windows\Markup\WpfXamlLoader.cs (3)
292XamlType xamlType = xamlReader.Type; 418stack.CurrentFrame.Type = xamlReader.Type; 424stack.CurrentFrame.Type = xamlReader.Type;
System\Windows\ResourceDictionary.cs (1)
1174if (reader.NodeType == Xaml.XamlNodeType.StartObject && reader.Type == xamlTypeStaticResourceExtension)
System\Windows\TemplateContent.cs (11)
416if (xamlReader.Type.UnderlyingType == typeof(StaticResourceExtension)) 449RootType = xamlReader.Type; 451stack.Push(xamlReader.Type, null); 756Debug.Assert(xamlReader.Type.UnderlyingType == typeof(StaticResourceExtension)); 898Type typeofValue = xamlReader.Type.UnderlyingType; 904if (!IsTypeShareable(xamlReader.Type.UnderlyingType)) 914frames.Push(xamlReader.Type, null); 920if (typeof(FrameworkTemplate).IsAssignableFrom(xamlReader.Type.UnderlyingType)) 925else if (typeof(Style).IsAssignableFrom(xamlReader.Type.UnderlyingType)) 948if (typeof(StaticResourceExtension).IsAssignableFrom(xamlReader.Type.UnderlyingType)) 953frames.Push(xamlReader.Type, null);
System.Xaml (5)
System\Xaml\XamlBackgroundReader.cs (1)
283get { return _internalReader.Type; }
System\Xaml\XamlObjectReader.cs (2)
2897nodes.Add(new ValueMarkupInfo { XamlNode = new XamlNode(XamlNodeType.StartObject, reader.Type) }); 2909nodes.Add(new ValueMarkupInfo{ XamlNode = new XamlNode(XamlNodeType.StartObject, reader.Type) });
System\Xaml\XamlSubreader.cs (1)
58get { return IsEmpty ? null : _reader.Type; }
System\Xaml\XamlWriter.cs (1)
33WriteStartObject(reader.Type);