IVsHierarchyRefactorNotify::OnAddParams Method (UInt32, String^, UInt32, array<UInt32>^, array<String^>^, array<String^>^)

 

Called after a method had parameters added.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)

int OnAddParams(
	unsigned int itemid,
	String^ lpszRQName,
	unsigned int cParams,
	array<unsigned int>^ rgszParamIndexes,
	array<String^>^ rgszRQTypeNames,
	array<String^>^ rgszParamNames
)

Parameters

itemid
Type: System::UInt32

The VSITEMID that identifies the affected file.

lpszRQName
Type: System::String^

The method that has parameters added.

cParams
Type: System::UInt32

The number of parameters added.

rgszParamIndexes
Type: array<System::UInt32>^

The indexes of the new parameters.

rgszRQTypeNames
Type: array<System::String^>^

The types of the new parameters.

rgszParamNames
Type: array<System::String^>^

The names of the new parameters.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsshell80.idl:

HRESULT OnAddParams(
    [in] VSITEMID itemid,                              
    [in] LPCOLESTR lpszRQName,                         
    [in] ULONG cParams,                                
    [in, size_is(cParams)] ULONG rgszParamIndexes[],   
    [in, size_is(cParams)] LPCOLESTR rgszRQTypeNames[],
    [in, size_is(cParams)] LPCOLESTR rgszParamNames[]);
Return to top
Show: