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!

ICodeNavigatorService.GetCompatibleMethods

Gets the names of methods that have signatures compatible with the specified delegate class.

[Visual Basic]
Function GetCompatibleMethods( _
   ByVal delegateClass As Type _
) As String ()
[C#]
string[] GetCompatibleMethods(
   Type delegateClass
);
[C++]
String* GetCompatibleMethods(
   Type* delegateClass
) [] = 0;
[JScript]
function GetCompatibleMethods(
   delegateClass : Type
) : String[];

Parameters

delegateClass
The class of delegate to get compatible methods for.

Return Value

An array of strings that reflect the names of compatible methods.

See Also

ICodeNavigatorService Interface | ICodeNavigatorService Members | System.ComponentModel.Design Namespace