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