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)
186public override Object GetValue(Object obj,BindingFlags invokeAttr,Binder binder,Object[] index,CultureInfo culture)
system\reflection\propertyinfo.cs (1)
624public override Object GetValue(Object obj, BindingFlags invokeAttr, Binder binder, Object[] index, CultureInfo culture)
PresentationFramework (1)
src\Framework\MS\Internal\Data\IndexerPropertyInfo.cs (1)
68public 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)
1822public 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)
1822public 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)
2480public override object GetValue(object obj, BindingFlags invokeAttr, Binder binder, object[] index, CultureInfo culture)
System.Workflow.ComponentModel (5)
AuthoringOM\Bind.cs (1)
1646public override object GetValue(object obj, BindingFlags invokeAttr, Binder binder, object[] index, CultureInfo culture)
AuthoringOM\Compiler\TypeSystem\PropertyInfo.cs (1)
151public override object GetValue(object obj, BindingFlags invokeAttr, Binder binder, object[] index, CultureInfo culture)
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1001public override object GetValue(object obj, BindingFlags invokeAttr, Binder binder, object[] index, CultureInfo culture)
AuthoringOM\Design\ComponentSerializationService.cs (1)
635public override object GetValue(object obj, BindingFlags invokeAttr, Binder binder, object[] index, CultureInfo culture)
AuthoringOM\Serializer\ExtendedPropertyInfo.cs (1)
120public override object GetValue(object obj, BindingFlags invokeAttr, Binder binder, object[] index, CultureInfo culture)
14 references to GetValue
mscorlib (1)
system\reflection\propertyinfo.cs (1)
111return GetValue(obj, BindingFlags.Default, null, index, null);
PresentationFramework (5)
src\Framework\MS\Internal\Data\PropertyPathWorker.cs (1)
298value = pi.GetValue(item,
src\Framework\MS\Internal\Data\XDeferredAxisSource.cs (1)
85pi.GetValue(xda,
src\Framework\System\Windows\Markup\BamlCollectionHolder.cs (1)
196_defaultCollection = PropertyDefinition.PropertyInfo.GetValue(
src\Framework\System\Windows\Markup\BamlRecordReader.cs (1)
1387contentProperty = propertyDefinition.PropertyInfo.GetValue(
src\Framework\System\Windows\Markup\XamlTypeMapper.cs (1)
2913propValue = pi.GetValue(target, BindingFlags.Default, null, null, TypeConverterHelper.InvariantEnglishUS);
System.Activities (1)
System\Activities\XamlIntegration\ActivityXamlServices.cs (1)
515typeSchemaContext = (XamlSchemaContext)schemaContextPropertyInfo.GetValue(null,
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1822public 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)
1822public 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)
151targetObject = (eventArgs.MemberInfo as PropertyInfo).GetValue(targetObject, BindingFlags.GetProperty, null, eventArgs.IndexParameters, CultureInfo.InvariantCulture); 1117value = (eventArgs.MemberInfo as PropertyInfo).GetValue(value, BindingFlags.GetProperty, null, eventArgs.IndexParameters, CultureInfo.InvariantCulture); 1654return this.originalPropertyInfo.GetValue(obj, invokeAttr, binder, index, culture);
AuthoringOM\Compiler\TypeSystem\RTTypeWrapper.cs (1)
1003return this.propertyInfo.GetValue(obj, invokeAttr, binder, index, culture);
AuthoringOM\Design\ComponentSerializationService.cs (1)
668value = this.realPropInfo.GetValue(targetObj, invokeAttr, binder, index, culture);