1 type derived from XamlTypeInvoker
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfKnownTypeInvoker.cs (1)
9
class WpfKnownTypeInvoker :
XamlTypeInvoker
2 instantiations of XamlTypeInvoker
System.Xaml (2)
System\Xaml\Schema\XamlTypeInvoker.cs (1)
41
s_Unknown = new
XamlTypeInvoker
();
System\Xaml\XamlType.cs (1)
859
return (UnderlyingType is not null) ? new
XamlTypeInvoker
(this) : null;
14 references to XamlTypeInvoker
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfKnownType.cs (1)
300
protected override System.Xaml.Schema.
XamlTypeInvoker
LookupInvoker()
System.Xaml (13)
System\Xaml\Runtime\PartialTrustTolerantRuntime.cs (1)
427
return xamlType.Invoker.GetType() == typeof(
XamlTypeInvoker
);
System\Xaml\Schema\TypeReflector.cs (2)
98
Invoker =
XamlTypeInvoker
.UnknownInvoker;
220
internal
XamlTypeInvoker
Invoker { get; set; }
System\Xaml\Schema\XamlTypeInvoker.cs (5)
16
private static
XamlTypeInvoker
s_Unknown;
35
public static
XamlTypeInvoker
UnknownInvoker
254
public static object CreateInstance(
XamlTypeInvoker
type)
264
private static object CallCtorDelegate(
XamlTypeInvoker
type)
277
private static bool EnsureConstructorDelegate(
XamlTypeInvoker
type)
System\Xaml\XamlType.cs (5)
62
public XamlType(Type underlyingType, XamlSchemaContext schemaContext,
XamlTypeInvoker
invoker)
67
internal XamlType(string alias, Type underlyingType, XamlSchemaContext schemaContext,
XamlTypeInvoker
invoker, TypeReflector reflector)
92
public
XamlTypeInvoker
Invoker
99
_reflector.Invoker = LookupInvoker() ??
XamlTypeInvoker
.UnknownInvoker;
857
protected virtual
XamlTypeInvoker
LookupInvoker()