Condividi tramite


Proprietà Breakpoint2.HitCountType

Ottiene il tipo di passaggi che descrive come interpretare il numero di passaggi.

Spazio dei nomi:  EnvDTE80
Assembly:  EnvDTE80 (in EnvDTE80.dll)

Sintassi

'Dichiarazione
ReadOnly Property HitCountType As dbgHitCountType
dbgHitCountType HitCountType { get; }
property dbgHitCountType HitCountType {
    dbgHitCountType get ();
}
abstract HitCountType : dbgHitCountType with get
function get HitCountType () : dbgHitCountType

Valore proprietà

Tipo: dbgHitCountType
Uno dei valori di dbgHitCountType.

Note

Il valore dbgHitCountType descrive il modo in cui interpretare il numero di passaggi.

Esempi

Nell'esempio seguente viene illustrato l'utilizzare della proprietà HitCountType.

Per verificare la proprietà:

  1. Impostare un punto di interruzione nell'applicazione di destinazione.

  2. Impostare diverse proprietà dei punti di interruzione nella finestra di dialogo Proprietà/Passaggi.

  3. Eseguire il componente aggiuntivo.

public static void HitCountType(EnvDTE80.DTE2 dte)
{
    // Setup debug Output window.
    Window w = (Window)dte.Windows.Item(EnvDTE.Constants.vsWindowKindOutput);
    w.Visible = true;
    OutputWindow ow = (OutputWindow)w.Object;
    OutputWindowPane owp = ow.OutputWindowPanes.Add("HitCountType property: ");
    owp.Activate();

    // dte is a reference to the DTE2 object passed to you by the
    // OnConnection method that you implement when you create an Add-in.
    EnvDTE80.Debugger2 debugger = (EnvDTE80.Debugger2)dte.Debugger;
    owp.OutputString("HitCountTarget: " +
                        debugger.Breakpoints.Item(1).HitCountTarget);
    owp.OutputString("\nHitCountType: " +
                        debugger.Breakpoints.Item(1).HitCountType);
    owp.OutputString("\nLocationType: " +
                        debugger.Breakpoints.Item(1).LocationType);
    owp.OutputString("\nName: " + debugger.Breakpoints.Item(1).Name);
    debugger.Breakpoints.Item(1).Tag = "My Breakpoint";
    owp.OutputString("\nTag: " + debugger.Breakpoints.Item(1).Tag);
    owp.OutputString("\nType: " + debugger.Breakpoints.Item(1).Type); 
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

Breakpoint2 Interfaccia

Spazio dei nomi EnvDTE80

Altre risorse

Procedura: compilare ed eseguire gli esempi di codice del modello a oggetti di automazione