C# 클래스 Microsoft.CSharp.RuntimeBinder.CSharpIsEventBinder

Used to test whether a dynamic member over which += or -= is used is an event member.
상속: System.Dynamic.DynamicMetaObjectBinder
파일 보기 프로젝트 열기: dotnet/corefx 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
Bind ( DynamicMetaObject target, DynamicMetaObject args ) : DynamicMetaObject

Performs the binding of the binary dynamic operation if the target dynamic object cannot bind.

CSharpIsEventBinder ( string name, Type callingContext ) : System

Initializes a new instance of the CSharpIsEventBinder class.

메소드 상세

Bind() 공개 최종 메소드

Performs the binding of the binary dynamic operation if the target dynamic object cannot bind.
public final Bind ( DynamicMetaObject target, DynamicMetaObject args ) : DynamicMetaObject
target System.Dynamic.DynamicMetaObject The target of the dynamic binary operation.
args System.Dynamic.DynamicMetaObject The arguments to the dynamic event test.
리턴 System.Dynamic.DynamicMetaObject

CSharpIsEventBinder() 공개 메소드

Initializes a new instance of the CSharpIsEventBinder class.
public CSharpIsEventBinder ( string name, Type callingContext ) : System
name string The name of the member to test.
callingContext System.Type The that indicates where this operation is defined.
리턴 System