Debugger.CurrentStackFrame 屬性
設定或取得目前的堆疊框架。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
Property CurrentStackFrame As StackFrame
StackFrame CurrentStackFrame { get; set; }
property StackFrame^ CurrentStackFrame {
StackFrame^ get ();
void set (StackFrame^ value);
}
abstract CurrentStackFrame : StackFrame with get, set
function get CurrentStackFrame () : StackFrame
function set CurrentStackFrame (value : StackFrame)
屬性值
型別:EnvDTE.StackFrame
StackFrame 物件。
備註
CurrentStackFrame 會設定或傳回 StackFrame 物件。 如需關於堆疊框架的詳細資訊,請參閱記憶體管理:框架配置。
範例
下列範例示範如何使用 CurrentStackFrame 屬性。
若要測試這個屬性:
請在目標應用程式中設定中斷點。 執行增益集。
目前的堆疊框架是空的。
請在目標應用程式中設定中斷點。 在偵錯模式執行目標應用程式。 當程式在中斷點上停止時,請執行增益集。
目前的堆疊框架包含方法名稱和傳回型別。
public static void CurrentStackFrame(DTE dte)
{
// Setup the 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("Current StackFrame Test");
owp.Activate();
owp.OutputString("Current Stack Frame Info: ");
EnvDTE.StackFrame sf = dte.Debugger.CurrentStackFrame;
if(sf == null)
owp.OutputString("No program is being debugged, Stack Frame is empty.");
else
owp.OutputString("Function " + sf.FunctionName +
" returns type " + sf.ReturnType);
}
Shared Sub CurrentStackFrame(ByRef dte As EnvDTE.DTE)
Dim sf As EnvDTE.StackFrame = dte.Debugger.CurrentStackFrame
If sf Is Nothing Then
MessageBox.Show("No program is being debugged, Stack Frame is empty.", _
"Debugger Test - Current Stack Frame Info")
Else
MessageBox.Show("Function " + sf.FunctionName + " returns type " + _
sf.ReturnType, "Debugger Test - Current Stack Frame Info")
End If
End Sub
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。