1 type derived from XamlTypeInvoker
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfKnownTypeInvoker.cs (1)
12class WpfKnownTypeInvoker : XamlTypeInvoker
2 instantiations of XamlTypeInvoker
System.Xaml (2)
System\Xaml\Schema\XamlTypeInvoker.cs (1)
49s_Unknown = new XamlTypeInvoker();
System\Xaml\XamlType.cs (1)
862return (UnderlyingType != null) ? new XamlTypeInvoker(this) : null;
14 references to XamlTypeInvoker
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfKnownType.cs (1)
303protected override System.Xaml.Schema.XamlTypeInvoker LookupInvoker()
System.Xaml (13)
System\Xaml\Runtime\PartialTrustTolerantRuntime.cs (1)
429return xamlType.Invoker.GetType() == typeof(XamlTypeInvoker);
System\Xaml\Schema\TypeReflector.cs (2)
100Invoker = XamlTypeInvoker.UnknownInvoker; 222internal XamlTypeInvoker Invoker { get; set; }
System\Xaml\Schema\XamlTypeInvoker.cs (5)
19private static XamlTypeInvoker s_Unknown; 43public static XamlTypeInvoker UnknownInvoker 278public static object CreateInstance(XamlTypeInvoker type) 288private static object CallCtorDelegate(XamlTypeInvoker type) 301private static bool EnsureConstructorDelegate(XamlTypeInvoker type)
System\Xaml\XamlType.cs (5)
65public XamlType(Type underlyingType, XamlSchemaContext schemaContext, XamlTypeInvoker invoker) 70internal XamlType(string alias, Type underlyingType, XamlSchemaContext schemaContext, XamlTypeInvoker invoker, TypeReflector reflector) 95public XamlTypeInvoker Invoker 102_reflector.Invoker = LookupInvoker() ?? XamlTypeInvoker.UnknownInvoker; 860protected virtual XamlTypeInvoker LookupInvoker()