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!

Type.GetMethods

Gets the methods of the current Type.

Overload List

Returns all the public methods of the current Type.

[Visual Basic] Overloads Public Function GetMethods() As MethodInfo ()
[C#] public MethodInfo[] GetMethods();
[C++] public: MethodInfo* GetMethods() [];
[JScript] public function GetMethods() : MethodInfo[];

When implemented by a derived class, searches for the methods defined for the current Type, using the specified binding constraints.

[Visual Basic] Overloads MustOverride Public Function GetMethods(BindingFlags) As MethodInfo ()
[C#] public abstract MethodInfo[] GetMethods(BindingFlags);
[C++] public: virtual MethodInfo* GetMethods(BindingFlags) [] = 0;
[JScript] public abstract function GetMethods(BindingFlags) : MethodInfo[];

See Also

Type Class | Type Members | System Namespace