次の方法で共有


Breakpoint2.Type プロパティ

ブレークポイントの種類を指定する定数を取得します。

名前空間:  EnvDTE80
アセンブリ:  EnvDTE80 (EnvDTE80.dll 内)

構文

'宣言
ReadOnly Property Type As dbgBreakpointType
    Get
dbgBreakpointType Type { get; }
property dbgBreakpointType Type {
    dbgBreakpointType get ();
}
abstract Type : dbgBreakpointType
function get Type () : dbgBreakpointType

プロパティ値

型: EnvDTE.dbgBreakpointType
dbgBreakpointType 値のいずれか。

実装

Breakpoint.Type

Type プロパティの使用方法を次の例に示します。

このプロパティをテストするには

  1. ターゲット アプリケーションにブレークポイントを設定します。

  2. [プロパティ/ヒット カウント] ダイアログ ボックスで各種のブレークポイント プロパティを設定します。

  3. アドインを実行します。

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

.NET Framework セキュリティ

  • 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

参照

Breakpoint2 インターフェイス

Type オーバーロード

EnvDTE80 名前空間

その他の技術情報

方法 : オートメーション オブジェクト モデルのコード例をコンパイルおよび実行する