Methods::GetParameterInfo Method (Int32, Int32, String^, String^, String^)
Visual Studio 2015
When implemented in a derived class, gets information about the specified parameter on the specified method signature.
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.
Show: