Not
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Represents a managed debugging assistant (MDA) message.
interface ICorDebugMDA : IUnknown {
HRESULT GetDescription (
[in] ULONG32 cchName,
[out] ULONG32 *pcchName,
[out, size_is(cchName), length_is(*pcchName)]
WCHAR szName[]
);
HRESULT GetFlags (
[in] CorDebugMDAFlags *pFlags
);
HRESULT GetName (
[in] ULONG32 cchName,
[out] ULONG32 *pcchName,
[out, size_is(cchName), length_is(*pcchName)]
WCHAR szName[]
);
HRESULT GetOSThreadId (
[out] DWORD *pOsTid
);
HRESULT GetXML (
[in] ULONG32 cchName,
[out] ULONG32 *pcchName,
[out, size_is(cchName), length_is(*pcchName)]
WCHAR szName[]
);
};
Methods
Method |
Description |
|---|---|
Gets a string containing a description of this MDA. |
|
Gets the flags associated with this MDA. |
|
Gets a string containing the name of this MDA. |
|
Gets the operating system thread identifier upon which this MDA is executing. |
|
Gets the full XML stream associated with this MDA. |
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
See Also
Concepts
Diagnosing Errors with Managed Debugging Assistants