Compartilhar via


Método IVsDebugger.InsertBreakpointByName (Guid, String)

 

Insere um ponto de interrupção em um local nomeado no programa, como, por exemplo, um nome de função.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)

Sintaxe

int InsertBreakpointByName(
    [InAttribute] ref Guid guidLanguage,
    string pszCodeLocationText
)
int InsertBreakpointByName(
    [InAttribute] Guid% guidLanguage,
    String^ pszCodeLocationText
)
abstract InsertBreakpointByName : 
        guidLanguage:Guid byref *
        pszCodeLocationText:string -> int
Function InsertBreakpointByName (
    <InAttribute> ByRef guidLanguage As Guid,
    pszCodeLocationText As String
) As Integer

Parâmetros

  • guidLanguage
    [in] O GUID para o serviço de linguagem, como SID_SVisualBasicLangService.
  • pszCodeLocationText
    [in] A seqüência de caracteres que contém o nome do local para definir o ponto de interrupção.

Valor de retorno

Type: System.Int32

Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.

Comentários

COM assinatura

De vsshell.idl:

HRESULT IVsDebugger::InsertBreakpointByName(
   [in] REFGUID guidLanguage,
   [in] LPCOLESTR pszCodeLocationText
);

Consulte também

Interface IVsDebugger
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo