7 overrides of GetValue
PresentationFramework (1)
MS\Internal\Data\IndexerPropertyInfo.cs (1)
64
public override object
GetValue
(object obj, BindingFlags invokeAttr, Binder binder, object[] index, System.Globalization.CultureInfo culture)
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimePropertyBuilder.cs (1)
116
public override object
GetValue
(object? obj, BindingFlags invokeAttr, Binder? binder, object?[]? index, CultureInfo? culture)
src\System\Reflection\RuntimePropertyInfo.cs (1)
334
public override object?
GetValue
(object? obj, BindingFlags invokeAttr, Binder? binder, object?[]? index, CultureInfo? culture)
System.Reflection.Context (2)
System\Reflection\Context\Delegation\DelegatingPropertyInfo.cs (1)
91
public override object?
GetValue
(object? obj, BindingFlags invokeAttr, Binder? binder, object?[]? index, CultureInfo? culture)
System\Reflection\Context\Virtual\VirtualPropertyBase.cs (1)
102
public sealed override object?
GetValue
(object? obj, BindingFlags invokeAttr, Binder? binder, object?[]? index, CultureInfo? culture)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Properties\RoProperty.cs (1)
171
public sealed override object
GetValue
(object? obj, BindingFlags invokeAttr, Binder? binder, object?[]? index, CultureInfo? culture) => throw new InvalidOperationException(SR.Arg_InvalidOperation_Reflection);
System.Xaml.Tests (1)
System\Xaml\XamlMemberTests.cs (1)
2420
public override object?
GetValue
(object? obj, BindingFlags invokeAttr, Binder? binder, object?[]? index, CultureInfo? culture)
13 references to GetValue
Microsoft.CodeAnalysis.EditorFeatures (1)
artifacts\obj\Microsoft.CodeAnalysis.EditorFeatures\Release\net472\GeneratedInternalTypeHelper.g.cs (1)
33
return propertyInfo.
GetValue
(target, System.Reflection.BindingFlags.Default, null, null, culture);
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
Debugger\MemberInfo\PropertyInfoImpl.cs (1)
132
return this.Property.
GetValue
(obj, (System.Reflection.BindingFlags)invokeAttr, null, null, null);
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\FileIO\SpecialDirectories.vb (1)
170
Return DirectCast([property].
GetValue
(Nothing, BindingFlags.DoNotWrapExceptions, Nothing, Nothing, Nothing), String)
Microsoft.VisualStudio.LanguageServices (1)
artifacts\obj\Microsoft.VisualStudio.LanguageServices\Release\net472\GeneratedInternalTypeHelper.g.cs (1)
33
return propertyInfo.
GetValue
(target, System.Reflection.BindingFlags.Default, null, null, culture);
Microsoft.VisualStudio.LanguageServices.CSharp (1)
artifacts\obj\Microsoft.VisualStudio.LanguageServices.CSharp\Release\net472\GeneratedInternalTypeHelper.g.cs (1)
33
return propertyInfo.
GetValue
(target, System.Reflection.BindingFlags.Default, null, null, culture);
PresentationFramework (5)
MS\Internal\Data\PropertyPathWorker.cs (1)
289
value = pi.
GetValue
(item,
MS\Internal\Data\XDeferredAxisSource.cs (1)
80
pi.
GetValue
(xda,
System\Windows\Markup\BamlCollectionHolder.cs (1)
190
_defaultCollection = PropertyDefinition.PropertyInfo.
GetValue
(
System\Windows\Markup\BamlRecordReader.cs (1)
1343
contentProperty = propertyDefinition.PropertyInfo.
GetValue
(
System\Windows\Markup\XamlTypeMapper.cs (1)
2777
propValue = pi.
GetValue
(target, BindingFlags.Default, null, null, TypeConverterHelper.InvariantEnglishUS);
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Reflection\PropertyInfo.cs (1)
45
public virtual object? GetValue(object? obj, object?[]? index) =>
GetValue
(obj, BindingFlags.Default, binder: null, index: index, culture: null);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingPropertyInfo.cs (1)
93
return UnderlyingProperty.
GetValue
(obj, invokeAttr, binder, index, culture);
System.Xaml.Tests (1)
System\Xaml\XamlMemberTests.cs (1)
2422
return DelegatingProperty.
GetValue
(obj, invokeAttr, binder, index, culture);