Kommentar
Å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.
Toggle a breakpoint at a named location in the program, such as a function name.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function ToggleBreakpointByName ( _
ByRef guidLanguage As Guid, _
pszCodeLocationText As String _
) As Integer
int ToggleBreakpointByName(
ref Guid guidLanguage,
string pszCodeLocationText
)
int ToggleBreakpointByName(
[InAttribute] Guid% guidLanguage,
[InAttribute] String^ pszCodeLocationText
)
abstract ToggleBreakpointByName :
guidLanguage:Guid byref *
pszCodeLocationText:string -> int
function ToggleBreakpointByName(
guidLanguage : Guid,
pszCodeLocationText : String
) : int
Parameters
guidLanguage
Type: System.Guid%[in] The GUID for the language service such as SID_SVisualBasicLangService.
pszCodeLocationText
Type: System.String[in] String containing the name of the location to toggle the breakpoint.
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::ToggleBreakpointByName(
[in] REFGUID guidLanguage,
[in] LPCOLESTR pszCodeLocationText
);
.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.