다음을 통해 공유


CodeAttachEventStatement 클래스

정의

이벤트 처리기 대리자를 이벤트에 연결하는 문을 나타냅니다.

public ref class CodeAttachEventStatement : System::CodeDom::CodeStatement
public class CodeAttachEventStatement : System.CodeDom.CodeStatement
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public class CodeAttachEventStatement : System.CodeDom.CodeStatement
type CodeAttachEventStatement = class
    inherit CodeStatement
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type CodeAttachEventStatement = class
    inherit CodeStatement
Public Class CodeAttachEventStatement
Inherits CodeStatement
상속
CodeAttachEventStatement
특성

예제

다음 예제 코드에서는 를 사용하여 CodeAttachEventStatement 이벤트 처리기를 이벤트와 연결하는 방법을 보여 줍니다.

// Defines a delegate creation expression that creates an EventHandler delegate pointing to a method named TestMethod.
CodeDelegateCreateExpression^ createDelegate1 = gcnew CodeDelegateCreateExpression( gcnew CodeTypeReference( "System.EventHandler" ),gcnew CodeThisReferenceExpression,"TestMethod" );

// Attaches an EventHandler delegate pointing to TestMethod to the TestEvent event.
CodeAttachEventStatement^ attachStatement1 = gcnew CodeAttachEventStatement( gcnew CodeThisReferenceExpression,"TestEvent",createDelegate1 );

// A C# code generator produces the following source code for the preceeding example code:
//     this.TestEvent += new System.EventHandler(this.TestMethod);
// Defines a delegate creation expression that creates an EventHandler delegate pointing to a method named TestMethod.
CodeDelegateCreateExpression createDelegate1 = new CodeDelegateCreateExpression(
new CodeTypeReference( "System.EventHandler" ), new CodeThisReferenceExpression(), "TestMethod" );
// Attaches an EventHandler delegate pointing to TestMethod to the TestEvent event.
CodeAttachEventStatement attachStatement1 = new CodeAttachEventStatement( new CodeThisReferenceExpression(), "TestEvent", createDelegate1 );

// A C# code generator produces the following source code for the preceeding example code:

//     this.TestEvent += new System.EventHandler(this.TestMethod);
' Defines a delegate creation expression that creates an EventHandler delegate pointing to TestMethod.
Dim createDelegate1 As New CodeDelegateCreateExpression(New CodeTypeReference("System.EventHandler"), New CodeThisReferenceExpression(), "TestMethod")

' Attaches an EventHandler delegate pointing to TestMethod to the TestEvent event.
Dim attachStatement1 As New CodeAttachEventStatement(New CodeThisReferenceExpression(), "TestEvent", createDelegate1)

' A Visual Basic code generator produces the following source code for the preceeding example code:

'     AddHandler TestEvent, AddressOf Me.TestMethod

설명

CodeAttachEventStatement 는 이벤트에 대한 이벤트 처리기 대리자를 추가하는 문을 나타내는 데 사용할 수 있습니다. 속성은 Event 이벤트 처리기를 연결할 이벤트를 나타냅니다. 속성은 Listener 연결할 이벤트 처리기를 나타냅니다.

생성자

CodeAttachEventStatement()

CodeAttachEventStatement 클래스의 새 인스턴스를 초기화합니다.

CodeAttachEventStatement(CodeEventReferenceExpression, CodeExpression)

지정한 이벤트 로그를 사용하여 CodeAttachEventStatement 클래스의 새 인스턴스를 초기화합니다.

CodeAttachEventStatement(CodeExpression, String, CodeExpression)

해당 이벤트, 이벤트 이름 및 이벤트 처리기 대리자를 포함하는 지정된 개체를 사용하여 CodeAttachEventStatement 클래스의 새 인스턴스를 초기화합니다.

속성

EndDirectives

끝 지시문이 포함된 CodeDirectiveCollection 개체를 가져옵니다.

(다음에서 상속됨 CodeStatement)
Event

이벤트 처리기 대리자와 연결할 이벤트를 가져오거나 설정합니다.

LinePragma

코드 문이 있는 줄을 가져오거나 설정합니다.

(다음에서 상속됨 CodeStatement)
Listener

이벤트와 연결할 새 이벤트 처리기 대리자를 가져오거나 설정합니다.

StartDirectives

시작 지시문이 포함된 CodeDirectiveCollection 개체를 가져옵니다.

(다음에서 상속됨 CodeStatement)
UserData

현재 개체에 대해 사용자 정의 가능한 데이터를 가져옵니다.

(다음에서 상속됨 CodeObject)

메서드

Equals(Object)

지정된 개체가 현재 개체와 같은지 확인합니다.

(다음에서 상속됨 Object)
GetHashCode()

기본 해시 함수로 작동합니다.

(다음에서 상속됨 Object)
GetType()

현재 인스턴스의 Type을 가져옵니다.

(다음에서 상속됨 Object)
MemberwiseClone()

현재 Object의 단순 복사본을 만듭니다.

(다음에서 상속됨 Object)
ToString()

현재 개체를 나타내는 문자열을 반환합니다.

(다음에서 상속됨 Object)

적용 대상