IVsDebugger.InsertBreakpointByName Method

Inserts 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

'宣言
Function InsertBreakpointByName ( _
    ByRef guidLanguage As Guid, _
    pszCodeLocationText As String _
) As Integer
'使用
Dim instance As IVsDebugger
Dim guidLanguage As Guid
Dim pszCodeLocationText As String
Dim returnValue As Integer

returnValue = instance.InsertBreakpointByName(guidLanguage, _
    pszCodeLocationText)
int InsertBreakpointByName(
    ref Guid guidLanguage,
    string pszCodeLocationText
)
int InsertBreakpointByName(
    [InAttribute] Guid% guidLanguage, 
    [InAttribute] String^ pszCodeLocationText
)
function InsertBreakpointByName(
    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 set 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::InsertBreakpointByName(
   [in] REFGUID guidLanguage,
   [in] LPCOLESTR pszCodeLocationText
);

Permissions

See Also

Reference

IVsDebugger Interface

IVsDebugger Members

Microsoft.VisualStudio.Shell.Interop Namespace