Methods::GetParameterInfo Method (Int32, Int32, String^, String^, String^)

 

When implemented in a derived class, gets information about the specified parameter on the specified method signature.

Namespace:   Microsoft.VisualStudio.Package
Assembly:  Microsoft.VisualStudio.Package.LanguageService.14.0 (in Microsoft.VisualStudio.Package.LanguageService.14.0.dll)

public:
virtual void GetParameterInfo(
	int index,
	int parameter,
	[OutAttribute] String^% name,
	[OutAttribute] String^% display,
	[OutAttribute] String^% description
) abstract

Parameters

index
Type: System::Int32

[in] An index into the list of method signatures.

parameter
Type: System::Int32

[in] An index into the parameter list of the specified method signature.

name
Type: System::String^

[out] Returns the name of the parameter.

display
Type: System::String^

[out] Returns the parameter name and type formatted for display.

description
Type: System::String^

[out] Returns a string containing a description of the parameter.

In the default managed package framework implementation of the language service classes, this method is called from the GetParameterText method in the MethodData class.

Return to top
Show: