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.GetMethods

Returns an array of MethodInfo objects representing specified methods of the current TypeDelegator.

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

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 MethodInfo objects representing the methods defined on this TypeDelegator

Remarks

Returns the methods declared or inherited

See Also

TypeDelegator Class | TypeDelegator Members | System.Reflection Namespace