14 references to Invoker
System.Xaml (5)
System\Xaml\Runtime\ClrObjectRuntime.cs (4)
73return xamlType.Invoker.CreateInstance(args); 320collectionType.Invoker.AddToCollection(collection, value); 337dictionaryType.Invoker.AddToDictionary(collection, key, value); 724result = collectionType.Invoker.GetItems(collection);
System\Xaml\Runtime\PartialTrustTolerantRuntime.cs (1)
442return xamlType.Invoker.GetType() == typeof(XamlTypeInvoker);
System.Xaml.Tests (9)
System\Xaml\XamlTypeTests.cs (9)
40Assert.Equal(XamlTypeInvoker.UnknownInvoker, type.Invoker); 70Assert.Equal(XamlTypeInvoker.UnknownInvoker, type.Invoker); 96Assert.NotEqual(XamlTypeInvoker.UnknownInvoker, type.Invoker); 118Assert.NotNull(type.Invoker); 119Assert.NotEqual(XamlTypeInvoker.UnknownInvoker, type.Invoker); 123Assert.Equal(invoker, type.Invoker); 2547Assert.Equal(XamlTypeInvoker.UnknownInvoker, type.Invoker); 2555Assert.NotNull(type.Invoker); 2566Assert.Equal(XamlTypeInvoker.UnknownInvoker, type.Invoker);