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

Finds the method in the class with the specified name, arguments, return type, and modifiers.

Overload List

Finds the method in the class with the specified name, arguments, return type, and modifiers.

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

Finds the method in the class with the specified name, arguments, return type, and modifiers.

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

Finds the method in the class with the specified name, arguments, and return type.

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

Finds the method in the class with the specified name, arguments, return type, and modifiers.

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

See Also

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