Compartilhar via


Método IVsDebugger.IsBreakpointOnName (Guid, String, Int32)

 

Testes para um ponto de interrupção definida em um local nomeado.

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

Sintaxe

int IsBreakpointOnName(
    [InAttribute] ref Guid guidLanguage,
    string pszCodeLocationText,
    out int pfIsBreakpoint
)
int IsBreakpointOnName(
    [InAttribute] Guid% guidLanguage,
    String^ pszCodeLocationText,
    [OutAttribute] int% pfIsBreakpoint
)
abstract IsBreakpointOnName : 
        guidLanguage:Guid byref *
        pszCodeLocationText:string *
        pfIsBreakpoint:int byref -> int
Function IsBreakpointOnName (
    <InAttribute> ByRef guidLanguage As Guid,
    pszCodeLocationText As String,
    <OutAttribute> ByRef pfIsBreakpoint As Integer
) 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 testar um ponto de interrupção, como, por exemplo, um nome de função.
  • pfIsBreakpoint
    [out] Definido como true se o ponto de interrupção é definido; Caso contrário, é definida como false.

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::IsBreakpointOnName(
   [in] REFGUID guidLanguage,
   [in] LPCOLESTR pszCodeLocationText,
   [out] BOOL* pfIsBreakpoint
);

Consulte também

Interface IVsDebugger
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo