_PropertyInfo::GetValue Method (Object^, BindingFlags, Binder^, array<Object^>^, CultureInfo^)
Provides COM objects with version-independent access to the GetValue method.
Assembly: mscorlib (in mscorlib.dll)
Object^ GetValue(
Object^ obj,
BindingFlags invokeAttr,
Binder^ binder,
array<Object^>^ index,
CultureInfo^ culture
)
Parameters
- obj
-
Type:
System::Object^
The object whose property value will be returned.
- invokeAttr
-
Type:
System.Reflection::BindingFlags
The invocation attribute. This must be a bit flag from BindingFlags: InvokeMethod, CreateInstance, Static, GetField, SetField, GetProperty, or SetProperty. A suitable invocation attribute must be specified. If a static member will be invoked, the Static flag of BindingFlags must be set.
- binder
-
Type:
System.Reflection::Binder^
An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects through reflection. If binder is null, the default binder is used.
- index
-
Type:
array<System::Object^>^
Optional index values for indexed properties. This value should be null for non-indexed properties.
- culture
-
Type:
System.Globalization::CultureInfo^
The CultureInfo object that represents the culture for which the resource will be localized. Note that if the resource is not localized for this culture, the CultureInfo.Parent method will be called successively in search of a match. If this value is null, the CultureInfo is obtained from the CultureInfo.CurrentUICulture property.
This method is for access to managed classes from unmanaged code and should not be called from managed code.
The GetValue method returns the value of a property having the specified binding, index, and CultureInfo.
Available since 1.1