Método IVsProjectDebugTargetProvider.SupplyDebugTarget (String, String)

 

Obtém informações sobre um destino de depuração, se o destino de depuração atual for apropriado.

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

Sintaxe

int SupplyDebugTarget(
    out string pbstrTarget,
    out string pbstrCommandLine
)
int SupplyDebugTarget(
    [OutAttribute] String^% pbstrTarget,
    [OutAttribute] String^% pbstrCommandLine
)
abstract SupplyDebugTarget : 
        pbstrTarget:string byref *
        pbstrCommandLine:string byref -> int
Function SupplyDebugTarget (
    <OutAttribute> ByRef pbstrTarget As String,
    <OutAttribute> ByRef pbstrCommandLine As String
) As Integer

Parâmetros

  • pbstrTarget
    [out] Ponteiro para uma seqüência de caracteres que contém o nome do destino.
  • pbstrCommandLine
    [out] Ponteiro para uma seqüência de caracteres que contém os argumentos para o provedor.

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 vsshell80.idl:

[C++]

HRESULT IVsProjectDebugTargetProvider::SupplyDebugTarget(
   [out] BSTR* pbstrTarget, 
   [out] BSTR* pbstrCommandLine
);

Consulte também

Interface IVsProjectDebugTargetProvider
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo