CodeEventReferenceExpression クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
イベントへの参照を表します。
public ref class CodeEventReferenceExpression : System::CodeDom::CodeExpression
public class CodeEventReferenceExpression : System.CodeDom.CodeExpression
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public class CodeEventReferenceExpression : System.CodeDom.CodeExpression
type CodeEventReferenceExpression = class
inherit CodeExpression
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type CodeEventReferenceExpression = class
inherit CodeExpression
Public Class CodeEventReferenceExpression
Inherits CodeExpression
- 継承
- 属性
例
次の例では、 を CodeEventReferenceExpression 使用して TestEvent という名前のイベントを参照する方法を示します。
// Represents a reference to an event.
CodeEventReferenceExpression^ eventRef1 = gcnew CodeEventReferenceExpression( gcnew CodeThisReferenceExpression,"TestEvent" );
// A C# code generator produces the following source code for the preceeding example code:
// this.TestEvent
// Represents a reference to an event.
CodeEventReferenceExpression eventRef1 = new CodeEventReferenceExpression( new CodeThisReferenceExpression(), "TestEvent" );
// A C# code generator produces the following source code for the preceeding example code:
// this.TestEvent
' Represents a reference to an event.
Dim eventRef1 As New CodeEventReferenceExpression(New CodeThisReferenceExpression(), "TestEvent")
' A Visual Basic code generator produces the following source code for the preceeding example code:
' Me.TestEvent
注釈
CodeEventReferenceExpression を使用して、イベントへの参照を表すことができます。
プロパティは TargetObject 、 イベントを含むオブジェクトを指定します。 プロパティは EventName 、イベントの名前を指定します。
コンストラクター
CodeEventReferenceExpression() |
CodeEventReferenceExpression クラスの新しいインスタンスを初期化します。 |
CodeEventReferenceExpression(CodeExpression, String) |
対象オブジェクトとイベント名を指定して、CodeEventReferenceExpression クラスの新しいインスタンスを初期化します。 |
プロパティ
EventName |
イベントの名前を取得または設定します。 |
TargetObject |
イベントを格納するオブジェクトを取得または設定します。 |
UserData |
現在のオブジェクトのユーザー定義可能なデータを取得します。 (継承元 CodeObject) |
メソッド
Equals(Object) |
指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。 (継承元 Object) |
GetHashCode() |
既定のハッシュ関数として機能します。 (継承元 Object) |
GetType() |
現在のインスタンスの Type を取得します。 (継承元 Object) |
MemberwiseClone() |
現在の Object の簡易コピーを作成します。 (継承元 Object) |
ToString() |
現在のオブジェクトを表す文字列を返します。 (継承元 Object) |
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET