Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Loads the specified debug symbols in memory.
HRESULT LoadSymbols(
   ULONG32   ulAppDomainID,
   GUID      guidModule,
   ULONGLONG baseAddress,
   IUnknown* pUnkMetadataImport,
   BSTR      bstrModuleName,
   BSTR      bstrSymSearchPath
);
int LoadSymbols(
   uint   ulAppDomainID,
   Guid   guidModule,
   ulong  baseAddress,
   object pUnkMetadataImport,
   string bstrModuleName,
   string bstrSymSearchPath
);
Parameters
- ulAppDomainID 
 [in] Identifier of the application domain.
- guidModule 
 [in] Unique identifier of the mondule.
- baseAddress 
 [in] Base memory address.
- pUnkMetadataImport 
 [in] Object that contains the symbol metadata.
- bstrModuleName 
 [in] Name of the module.
- bstrSymSearchPath 
 [in] Path to search for the symbol file.
Return Value
If successful, returns S_OK; otherwise, returns an error code.
Example
The following example shows how to implement this method for a CDebugSymbolProvider object that exposes the IDebugComPlusSymbolProvider interface.
HRESULT CDebugSymbolProvider::LoadSymbols(
    ULONG32 ulAppDomainID,
    GUID guidModule,
    ULONGLONG baseOffset,
    IUnknown* _pMetadata,
    BSTR bstrModule,
    BSTR bstrSearchPath)
{
    return LoadSymbolsWithCorModule(ulAppDomainID, guidModule, baseOffset, _pMetadata, NULL, bstrModule, bstrSearchPath);
}