3 overrides of SetValue
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfKnownMemberInvoker.cs (1)
33public override void SetValue(object instance, object value)
System\Windows\Markup\Baml2006\WpfMemberInvoker.cs (1)
21public override void SetValue(object instance, object value)
System.Xaml (1)
System\Xaml\Schema\XamlMemberInvoker.cs (1)
172public override void SetValue(object instance, object value)
8 references to SetValue
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfMemberInvoker.cs (1)
42base.SetValue(instance, value);
System.Xaml (1)
System\Xaml\Runtime\ClrObjectRuntime.cs (1)
313member.Invoker.SetValue(obj, value);
System.Xaml.Tests (6)
System\Xaml\Schema\XamlMemberInvokerTests.cs (5)
118invoker.SetValue(instance, 1); 130invoker.SetValue(instance, 1); 137Assert.Throws<ArgumentNullException>("instance", () => XamlMemberInvoker.UnknownInvoker.SetValue(null, "value")); 147Assert.Throws<NotSupportedException>(() => invoker.SetValue(instance, 1)); 154Assert.Throws<NotSupportedException>(() => invoker.SetValue(new object(), "value"));
System\Xaml\XamlDirectiveTests.cs (1)
92Assert.Throws<NotSupportedException>(() => directive.Invoker.SetValue(null, null));