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