ICLRStrongName::StrongNameGetBlobFromImage Method

Gets a binary representation of the assembly image at the specified memory address.

HRESULT StrongNameGetBlobFromImage (
    [in]  BYTE        *pbBase,
    [in]  DWORD       dwLength,
    [in]  BYTE        *pbBlob,
    [in, out] DWORD   *pcbBlob
);

Parameters

  • pbBase
    [in] The memory address of the mapped assembly manifest.

  • dwLength
    [in] The size, in bytes, of the image at pbBase.

  • pbBlob
    [in] A buffer to contain the binary representation of the image.

  • pcbBlob
    [in, out] The requested maximum size, in bytes, of pbBlob. Upon return, the actual size, in bytes, of pbBlob.

Return Value

S_OK if the method completed successfully; otherwise, an HRESULT value that indicates failure (see Common HRESULT Values for a list).

Requirements

Platforms: See .NET Framework System Requirements.

Header: MetaHost.h

Library: Included as a resource in MSCorEE.dll

.NET Framework Versions: 4

See Also

Reference

ICLRStrongName::StrongNameGetBlob Method

ICLRStrongName Interface