NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IReflect.GetProperties

Retrieves an array of PropertyInfo objects corresponding to all public properties or to all properties of the current class.

[Visual Basic]
Function GetProperties( _
   ByVal bindingAttr As BindingFlags _
) As PropertyInfo ()
[C#]
PropertyInfo[] GetProperties(
   BindingFlags bindingAttr
);
[C++]
PropertyInfo* GetProperties(
   BindingFlags bindingAttr
) [] = 0;
[JScript]
function GetProperties(
   bindingAttr : BindingFlags
) : PropertyInfo[];

Parameters

bindingAttr
The binding attributes help control the search.

Return Value

An array of PropertyInfo objects for all the properties defined on the reflection object.

Remarks

The GetProperties method retrieves an array of PropertyInfo objects by using the binding attribute parameter that correspond to all public properties or to all properties of the current class.

The match is based upon a name.An example of a bind attribute value is IgnoreCase.

See Also

IReflect Interface | IReflect Members | System.Reflection Namespace | BindingFlags