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!

ICodeClass.FindMethods (String)

Finds all the methods with the specified name.

[Visual Basic]
Overloads Function FindMethods( _
   ByVal name As String _
) As ICodeMethod ()
[C#]
ICodeMethod[] FindMethods(
   string name
);
[C++]
ICodeMethod* FindMethods(
   String* name
) [] = 0;
[JScript]
function FindMethods(
   name : String
) : ICodeMethod[];

Parameters

name
The name of the methods to find.

Return Value

An array of type ICodeMethod representing the methods in the class matching the specified parameters. If no matching method is found, a null reference (in Visual Basic Nothing) is returned.

See Also

ICodeClass Interface | ICodeClass Members | System.ComponentModel.Design.CodeModel Namespace | ICodeClass.FindMethods Overload List