CDynamicParameterAccessor::GetParam
void* GetParam( ULONG nParam ) const;
void* GetParam( TCHAR* pParamName ) const;
template < class ctype**>
bool GetParam( ULONG** nParam**, ctype*** pData ) const;
template < class ctype >
bool GetParam( TCHAR* pParamName**, ctype*** pData ) const;
Return Value
For nontemplated versions, points to the memory containing the data retrieved from the buffer. For templated versions, returns true or false depending on success or failure.
Template Arguments
ctype
The data type.
Parameters
nParam
[in] The parameter number.
pParamName
[in] The parameter name.
pData
[out] The pointer to the memory containing the data retrieved from the buffer.
Remarks
Retrieves the data for a specified parameter from the parameter buffer.