CreateAssemblyNameObject Function

Gets an interface pointer to an IAssemblyName instance that represents the unique identity of the assembly with the specified name.

Syntax

HRESULT CreateAssemblyNameObject (  
    [out] LPASSEMBLYNAME  *ppAssemblyNameObj,  
    [in]  LPCWSTR         szAssemblyName,  
    [in]  DWORD           dwFlags,  
    [in]  LPVOID          pvReserved  
 );  

Parameters

ppAssemblyNameObj
[out] The returned IAssemblyName.

szAssemblyName
[in] The name of the assembly for which to create the new IAssemblyName instance.

dwFlags
[in] Flags to pass to the object constructor.

pvReserved
[in] Reserved for future extensibility. pvReserved must be a null reference.

Requirements

Platforms: See System Requirements.

Header: Fusion.h

Library: Included as a resource in MsCorEE.dll

.NET Framework Versions: Available since 2.0

See also