Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Returns the current debugger mode, a value in the DBGMODE enumeration such as DBGMODE_Break.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function GetMode ( _
<OutAttribute> pdbgmode As DBGMODE() _
) As Integer
'Usage
Dim instance As IVsDebugger
Dim pdbgmode As DBGMODE()
Dim returnValue As Integer
returnValue = instance.GetMode(pdbgmode)
int GetMode(
DBGMODE[] pdbgmode
)
int GetMode(
[OutAttribute] array<DBGMODE>^ pdbgmode
)
abstract GetMode :
pdbgmode:DBGMODE[] byref -> int
function GetMode(
pdbgmode : DBGMODE[]
) : int
Parameters
- pdbgmode
Type: array<Microsoft.VisualStudio.Shell.Interop.DBGMODE[]
[out] Pointer to a value in the DBGMODE enumeration.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsDebugger::GetMode(
[out] DBGMODE *pdbgmode
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.