Breakpoint2.Type, propriété
Obtient une constante qui spécifie le type de point d'arrêt.
Espace de noms : EnvDTE80
Assembly : EnvDTE80 (dans EnvDTE80.dll)
Syntaxe
'Déclaration
ReadOnly Property Type As dbgBreakpointType
dbgBreakpointType Type { get; }
property dbgBreakpointType Type {
dbgBreakpointType get ();
}
abstract Type : dbgBreakpointType with get
function get Type () : dbgBreakpointType
Valeur de propriété
Type : dbgBreakpointType
Une des valeurs de dbgBreakpointType.
Exemples
L'exemple suivant illustre l'utilisation de la propriété Type.
Pour tester cette propriété :
Définissez un point d'arrêt dans l'application cible.
Définissez plusieurs propriétés de point d'arrêt dans la boîte de dialogue Propriétés/Nombre d'accès.
Exécutez le complément.
public static void Type(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("Type 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);
}
Sub TypeSamplesVB(ByVal dte As DTE2)
' NOTE: This example requires a reference to the
' System.IO namespace.
' Before running this example, open a code document that
' contains one or more breakpoints.
Dim doc As Document = dte.ActiveDocument
Dim brk As Breakpoint
Dim msg As String
' Find all breakpoints in the current document.
For Each brk In dte.Debugger.Breakpoints
If brk.File = doc.FullName Then
msg &= "Name = " & brk.Name & vbCrLf & _
"Type = " & brk.Type.ToString() & vbCrLf & _
"Enabled = " & brk.Enabled.ToString() & vbCrLf & vbCrLf
End If
Next
MsgBox(Path.GetFileName(doc.FullName) & _
" has the following breakpoints:" & vbCrLf & vbCrLf & msg)
End Sub
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.
Voir aussi
Référence
Autres ressources
Comment : compiler et exécuter les exemples de code du modèle objet Automation