IVsHierarchyRefactorNotify::OnRemoveParams Method (UInt32, String^, UInt32, array<UInt32>^)
Visual Studio 2015
Called after a method had parameters removed.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
int OnRemoveParams( unsigned int itemid, String^ lpszRQName, unsigned int cParamIndexes, array<unsigned int>^ rgParamIndexes )
Parameters
- itemid
-
Type:
System::UInt32
The VSITEMID that identifies the affected file.
- lpszRQName
-
Type:
System::String^
The method that has parameters removed.
- cParamIndexes
-
Type:
System::UInt32
The number of parameters removed.
- rgParamIndexes
-
Type:
array<System::UInt32>^
An array of parameter indexes where each value indicates the index of the parameter that was removed.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
HRESULT OnRemoveParams(
[in] VSITEMID itemid,
[in] LPCOLESTR lpszRQName,
[in] ULONG cParamIndexes,
[in, size_is(cParamIndexes)] ULONG rgParamIndexes[]);
Show: