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.
Represents an assembly.
interface ICorDebugAssembly : IUnknown {
HRESULT EnumerateModules (
[out] ICorDebugModuleEnum **ppModules
);
HRESULT GetAppDomain (
[out] ICorDebugAppDomain **ppAppDomain
);
HRESULT GetCodeBase (
[in] ULONG32 cchName,
[out] ULONG32 *pcchName,
[out, size_is(cchName), length_is(*pcchName)]
WCHAR szName[]
);
HRESULT GetName (
[in] ULONG32 cchName,
[out] ULONG32 *pcchName,
[out, size_is(cchName), length_is(*pcchName)]
WCHAR szName[]
);
HRESULT GetProcess (
[out] ICorDebugProcess **ppProcess
);
};
Methods
Method |
Description |
---|---|
Gets an enumerator for the modules contained in the assembly. |
|
Gets an interface pointer to the application domain that contains this ICorDebugAssembly instance. |
|
Not implemented in the current version of the .NET Framework. |
|
Gets the name of the assembly. |
|
Gets the ICorDebugProcess instance in which the assembly is running. |
Requirements
Platforms: See .NET Framework System Requirements.
Header: CorDebug.idl
Library: CorGuids.lib
.NET Framework Versions: 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0, 1.1, 1.0