共用方式為


DiagnosticMethodInfo.Create 方法

定義

多載

Create(Delegate)

建立代表委派目標的 DiagnosticMethodInfo

Create(StackFrame)

建立 DiagnosticMethodInfo,表示這個堆疊框架所分派的方法。

Create(Delegate)

建立代表委派目標的 DiagnosticMethodInfo

public:
 static System::Diagnostics::DiagnosticMethodInfo ^ Create(Delegate ^ delegate);
public static System.Diagnostics.DiagnosticMethodInfo? Create (Delegate delegate);
static member Create : Delegate -> System.Diagnostics.DiagnosticMethodInfo
Public Shared Function Create (delegate As Delegate) As DiagnosticMethodInfo

參數

delegate
Delegate

要檢查的委派。

傳回

物件,表示 方法。

備註

這會傳回目標方法的定義,其中包含已去除的具現化資訊。

如果 'StackTraceSupport' 功能參數設定為 false,則傳回值可能會 null

適用於

Create(StackFrame)

建立 DiagnosticMethodInfo,表示這個堆疊框架所分派的方法。

public:
 static System::Diagnostics::DiagnosticMethodInfo ^ Create(System::Diagnostics::StackFrame ^ frame);
public static System.Diagnostics.DiagnosticMethodInfo? Create (System.Diagnostics.StackFrame frame);
static member Create : System.Diagnostics.StackFrame -> System.Diagnostics.DiagnosticMethodInfo
Public Shared Function Create (frame As StackFrame) As DiagnosticMethodInfo

參數

frame
StackFrame

要檢查的堆疊框架。

傳回

物件,表示堆疊框架。

備註

這會傳回目標方法的定義,其中包含已去除的具現化資訊。

如果 'StackTraceSupport' 功能參數設定為 false,則傳回值可能會 null

如果目標方法未知,則傳回值可能會 null

適用於