7 instantiations of TypeExtension
PresentationFramework (6)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (2)
11824DefaultConstructor = delegate () { return new System.Windows.Markup.TypeExtension(); }, 11831return new System.Windows.Markup.TypeExtension(
System\Windows\Markup\BamlRecordReader.cs (2)
1412instance = new TypeExtension(t); 1417instance = new TypeExtension((String)param);
System\Windows\Markup\KnownTypes.cs (1)
1620case KnownElements.TypeExtension: o = new System.Windows.Markup.TypeExtension(); break;
System\Windows\Markup\Primitives\ElementMarkupObject.cs (1)
920return new TypeExtension(type);
System.Xaml (1)
System\Xaml\XamlObjectReader.cs (1)
1980objectInfo = ForObject(new TypeExtension(type), context);
10 references to TypeExtension
PresentationFramework (6)
OtherAssemblyAttrs.cs (1)
16[assembly: TypeForwardedTo(typeof(System.Windows.Markup.TypeExtension))]
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
784case 691: t = () => typeof(TypeExtension); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
11821typeof(System.Windows.Markup.TypeExtension),
System\Windows\Markup\KnownTypes.cs (1)
6238case KnownElements.TypeExtension: t = typeof(System.Windows.Markup.TypeExtension); break;
System\Windows\Markup\Primitives\MarkupWriter.cs (1)
552string xamlUri = scope.MakeAddressable(typeof(TypeExtension));
System\Windows\TemplateContent.cs (1)
1016&& typeofValue != typeof(TypeExtension)
System.Xaml (4)
System\Windows\Markup\TypeExtensionConverter.cs (3)
30if (!(value is TypeExtension typeExtension)) 32throw new ArgumentException(SR.Format(SR.MustBeOfType, nameof(value), nameof(TypeExtension))); 36typeof(TypeExtension).GetConstructor(new Type[] { typeof(Type) }),
System\Xaml\XamlLanguage.cs (1)
67new Lazy<XamlType>(() => GetXamlType(typeof(TypeExtension)));