TypeBuilder.GetEvent(String, BindingFlags) メソッド

定義

指定した名前のイベントを返します。

public:
 override System::Reflection::EventInfo ^ GetEvent(System::String ^ name, System::Reflection::BindingFlags bindingAttr);
public override System.Reflection.EventInfo? GetEvent (string name, System.Reflection.BindingFlags bindingAttr);
public override System.Reflection.EventInfo GetEvent (string name, System.Reflection.BindingFlags bindingAttr);
override this.GetEvent : string * System.Reflection.BindingFlags -> System.Reflection.EventInfo
Public Overrides Function GetEvent (name As String, bindingAttr As BindingFlags) As EventInfo

パラメーター

name
String

検索対象のイベントの名前。

bindingAttr
BindingFlags

検索を制限する BindingFlags 値のビットごとの組み合わせ。

戻り値

この型によって宣言または継承されている、指定した名前のイベントを表す EventInfo オブジェクト。または、一致するものがない場合は null

例外

不完全な型では、このメソッドは実装されません。

注釈

または Assembly.GetType を使用して型をType.GetType取得し、取得した型でリフレクションを使用します。

適用対象