Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Called after a method had parameters removed.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function OnRemoveParams ( _
itemid As UInteger, _
lpszRQName As String, _
cParamIndexes As UInteger, _
rgParamIndexes As UInteger() _
) As Integer
int OnRemoveParams(
uint itemid,
string lpszRQName,
uint cParamIndexes,
uint[] rgParamIndexes
)
int OnRemoveParams(
[InAttribute] unsigned int itemid,
[InAttribute] String^ lpszRQName,
[InAttribute] unsigned int cParamIndexes,
[InAttribute] array<unsigned int>^ rgParamIndexes
)
abstract OnRemoveParams :
itemid:uint32 *
lpszRQName:string *
cParamIndexes:uint32 *
rgParamIndexes:uint32[] -> int
function OnRemoveParams(
itemid : uint,
lpszRQName : String,
cParamIndexes : uint,
rgParamIndexes : uint[]
) : int
Parameters
itemid
Type: UInt32The VSITEMID that identifies the affected file.
lpszRQName
Type: StringThe method that has parameters removed.
cParamIndexes
Type: UInt32The number of parameters removed.
rgParamIndexes
Type: array<UInt32[]An array of parameter indexes where each value indicates the index of the parameter that was removed.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell80.idl:
HRESULT OnRemoveParams(
[in] VSITEMID itemid,
[in] LPCOLESTR lpszRQName,
[in] ULONG cParamIndexes,
[in, size_is(cParamIndexes)] ULONG rgParamIndexes[]);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.