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!

TypeDelegator.GetProperties

Returns an array of PropertyInfo objects representing properties defined on this TypeDelegator.

[Visual Basic]
Overrides Public Function GetProperties( _
   ByVal bindingAttr As BindingFlags _
) As PropertyInfo ()
[C#]
public override PropertyInfo[] GetProperties(
   BindingFlags bindingAttr
);
[C++]
public: override PropertyInfo* GetProperties(
   BindingFlags bindingAttr
) [];
[JScript]
public override function GetProperties(
   bindingAttr : BindingFlags
) : PropertyInfo[];

Parameters

bindingAttr
This bit mask affects the way in which the search is conducted. The binding attributes used to control the search. An example is BindingFlags.NonPublic

Return Value

An array of PropertyInfo objects representing properties defined on this TypeDelegator.

Remarks

To be supplied

See Also

TypeDelegator Class | TypeDelegator Members | System.Reflection Namespace