PropertyInfo.GetValue Method
.NET Framework 1.1
Returns the value of the property.
Overload List
Returns the value of the property with optional index values for indexed properties.
Supported by the .NET Compact Framework.
[Visual Basic] Overloads Public Overridable Function GetValue(Object, Object()) As Object
[C#] public virtual object GetValue(object, object[]);
[C++] public: virtual Object* GetValue(Object*, Object*[]);
[JScript] public function GetValue(Object, Object[]) : Object;
When overridden in a derived class, returns the value of a property having the specified binding, index, and CultureInfo.
Supported by the .NET Compact Framework.
[Visual Basic] Overloads Public MustOverride Function GetValue(Object, BindingFlags, Binder, Object(), CultureInfo) As Object
[C#] public abstract object GetValue(object, BindingFlags, Binder, object[], CultureInfo);
[C++] public: virtual Object* GetValue(Object*, BindingFlags, Binder*, Object*[], CultureInfo*) = 0;
[JScript] public abstract function GetValue(Object, BindingFlags, Binder, Object[], CultureInfo) : Object;
See Also
PropertyInfo Class | PropertyInfo Members | System.Reflection Namespace