3 overrides of GetValue
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfKnownMemberInvoker.cs (1)
21public override object GetValue(object instance)
System\Windows\Markup\Baml2006\WpfMemberInvoker.cs (1)
45public override object GetValue(object instance)
System.Xaml (1)
System\Xaml\Schema\XamlMemberInvoker.cs (1)
167public override object GetValue(object instance)
8 references to GetValue
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfMemberInvoker.cs (1)
62return base.GetValue(instance);
System.Xaml (1)
System\Xaml\Runtime\ClrObjectRuntime.cs (1)
286return member.Invoker.GetValue(obj);
System.Xaml.Tests (6)
System\Xaml\Schema\XamlMemberInvokerTests.cs (5)
74Assert.Equal(1, invoker.GetValue(instance)); 85Assert.Equal(2, invoker.GetValue(instance)); 91Assert.Throws<ArgumentNullException>("instance", () => XamlMemberInvoker.UnknownInvoker.GetValue(null)); 101Assert.Throws<NotSupportedException>(() => invoker.GetValue(instance)); 108Assert.Throws<NotSupportedException>(() => invoker.GetValue("value"));
System\Xaml\XamlDirectiveTests.cs (1)
84Assert.Throws<NotSupportedException>(() => directive.Invoker.GetValue(null));