ISymUnmanagedMethod::GetParameters Method

Gets the parameters for this method. The parameters are returned in the order in which they are defined within the method's signature.

Syntax

HRESULT GetParameters(  
    [in]  ULONG32  cParams,  
    [out] ULONG32  *pcParams,  
    [out, size_is(cParams),  
        length_is(*pcParams)] ISymUnmanagedVariable*  params[]);  

Parameters

cParams
[in] The size of the params array.

pcParams
[in] A pointer to a ULONG32 that receives the size of the buffer that is required to contain the parameters.

params
[out] A pointer to the buffer that receives the parameters.

Return Value

S_OK if the method succeeds; otherwise, E_FAIL or some other error code.

Requirements

Header: CorSym.idl, CorSym.h

See also