Exists Method

WRAPPER_API bool Exists(const wchar_t *issuer) const

 

Description

The Exists method indicates if there exists an identifier in this IdentifierCollection with the specified issuer.

 

Example

void IdentifierCollection_Exists(GeoCalcPBW::IdentifierCollection & idc)

{

if(idc.Exists(L"GC"))

{

const wchar_t * code = idc.get_Item(L"GC");

}

}