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

Finds all the methods in the class with the specified arguments and return type.

Overload List

Finds all the methods in the class with the specified arguments and return type.

[Visual Basic] Overloads Function FindMethods(ICodeParameter(), ICodeClass) As ICodeMethod ()
[C#] ICodeMethod[] FindMethods(ICodeParameter[], ICodeClass);
[C++] ICodeMethod* FindMethods(ICodeParameter*[], ICodeClass) [] = 0;
[JScript] function FindMethods(ICodeParameter[], ICodeClass) : ICodeMethod[];

Finds all the methods with the specified argument types and return type.

[Visual Basic] Overloads Function FindMethods(ICodeClass(), ICodeClass) As ICodeMethod ()
[C#] ICodeMethod[] FindMethods(ICodeClass[], ICodeClass);
[C++] ICodeMethod* FindMethods(ICodeClass*[], ICodeClass*) [] = 0;
[JScript] function FindMethods(ICodeClass[], ICodeClass) : ICodeMethod[];

Finds all the methods with the specified name.

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

See Also

ICodeClass Interface | ICodeClass Members | System.ComponentModel.Design.CodeModel Namespace