Implemented interface member:
method
GetValue
System.Runtime.InteropServices._PropertyInfo.GetValue(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
11 overrides of GetValue
mscorlib (2)
system\reflection\emit\propertybuilder.cs (1)
186
public override Object
GetValue
(Object obj,BindingFlags invokeAttr,Binder binder,Object[] index,CultureInfo culture)
system\reflection\propertyinfo.cs (1)
624
public override Object
GetValue
(Object obj, BindingFlags invokeAttr, Binder binder, Object[] index, CultureInfo culture)
PresentationFramework (1)
src\Framework\MS\Internal\Data\IndexerPropertyInfo.cs (1)
68
public override object
GetValue
(object obj, BindingFlags invokeAttr, Binder binder, object[] index, System.Globalization.CultureInfo culture)
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1822
public override object
GetValue
(object obj, BindingFlags invokeAttr, Binder binder, object[] index, CultureInfo culture) { return _info.GetValue(obj, invokeAttr, binder, index, culture); }
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1822
public override object
GetValue
(object obj, BindingFlags invokeAttr, Binder binder, object[] index, CultureInfo culture) { return _info.GetValue(obj, invokeAttr, binder, index, culture); }
System.Workflow.Activities (1)
Designers\StateDesigner.cs (1)
2480
public override object
GetValue
(object obj, BindingFlags invokeAttr, Binder binder, object[] index, CultureInfo culture)
System.Workflow.ComponentModel (5)
AuthoringOM\Bind.cs (1)
1646
public override object
GetValue
(object obj, BindingFlags invokeAttr, Binder binder, object[] index, CultureInfo culture)
AuthoringOM\Compiler\TypeSystem\PropertyInfo.cs (1)
151
public override object
GetValue
(object obj, BindingFlags invokeAttr, Binder binder, object[] index, CultureInfo culture)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1001
public override object
GetValue
(object obj, BindingFlags invokeAttr, Binder binder, object[] index, CultureInfo culture)
AuthoringOM\Design\ComponentSerializationService.cs (1)
635
public override object
GetValue
(object obj, BindingFlags invokeAttr, Binder binder, object[] index, CultureInfo culture)
AuthoringOM\Serializer\ExtendedPropertyInfo.cs (1)
120
public override object
GetValue
(object obj, BindingFlags invokeAttr, Binder binder, object[] index, CultureInfo culture)
14 references to GetValue
mscorlib (1)
system\reflection\propertyinfo.cs (1)
111
return
GetValue
(obj, BindingFlags.Default, null, index, null);
PresentationFramework (5)
src\Framework\MS\Internal\Data\PropertyPathWorker.cs (1)
298
value = pi.
GetValue
(item,
src\Framework\MS\Internal\Data\XDeferredAxisSource.cs (1)
85
pi.
GetValue
(xda,
src\Framework\System\Windows\Markup\BamlCollectionHolder.cs (1)
196
_defaultCollection = PropertyDefinition.PropertyInfo.
GetValue
(
src\Framework\System\Windows\Markup\BamlRecordReader.cs (1)
1387
contentProperty = propertyDefinition.PropertyInfo.
GetValue
(
src\Framework\System\Windows\Markup\XamlTypeMapper.cs (1)
2913
propValue = pi.
GetValue
(target, BindingFlags.Default, null, null, TypeConverterHelper.InvariantEnglishUS);
System.Activities (1)
System\Activities\XamlIntegration\ActivityXamlServices.cs (1)
515
typeSchemaContext = (XamlSchemaContext)schemaContextPropertyInfo.
GetValue
(null,
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1822
public override object GetValue(object obj, BindingFlags invokeAttr, Binder binder, object[] index, CultureInfo culture) { return _info.
GetValue
(obj, invokeAttr, binder, index, culture); }
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1822
public override object GetValue(object obj, BindingFlags invokeAttr, Binder binder, object[] index, CultureInfo culture) { return _info.
GetValue
(obj, invokeAttr, binder, index, culture); }
System.Workflow.ComponentModel (5)
AuthoringOM\Bind.cs (3)
151
targetObject = (eventArgs.MemberInfo as PropertyInfo).
GetValue
(targetObject, BindingFlags.GetProperty, null, eventArgs.IndexParameters, CultureInfo.InvariantCulture);
1117
value = (eventArgs.MemberInfo as PropertyInfo).
GetValue
(value, BindingFlags.GetProperty, null, eventArgs.IndexParameters, CultureInfo.InvariantCulture);
1654
return this.originalPropertyInfo.
GetValue
(obj, invokeAttr, binder, index, culture);
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1003
return this.propertyInfo.
GetValue
(obj, invokeAttr, binder, index, culture);
AuthoringOM\Design\ComponentSerializationService.cs (1)
668
value = this.realPropInfo.
GetValue
(targetObj, invokeAttr, binder, index, culture);