C# 클래스 System.Dynamic.CreateInstanceBinder

상속: DynamicMetaObjectBinder
파일 보기 프로젝트 열기: dotnet/corefx 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

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

Performs the binding of the dynamic create operation.

FallbackCreateInstance ( DynamicMetaObject target, DynamicMetaObject args ) : DynamicMetaObject

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

FallbackCreateInstance ( DynamicMetaObject target, DynamicMetaObject args, DynamicMetaObject errorSuggestion ) : DynamicMetaObject

When overridden in the derived class, performs the binding of the dynamic create operation if the target dynamic object cannot bind.

보호된 메소드들

메소드 설명
CreateInstanceBinder ( CallInfo callInfo ) : System.Dynamic.Utils

Initializes a new instance of the CreateInstanceBinder.

메소드 상세

Bind() 공개 최종 메소드

Performs the binding of the dynamic create operation.
public final Bind ( DynamicMetaObject target, DynamicMetaObject args ) : DynamicMetaObject
target DynamicMetaObject The target of the dynamic create operation.
args DynamicMetaObject An array of arguments of the dynamic create operation.
리턴 DynamicMetaObject

CreateInstanceBinder() 보호된 메소드

Initializes a new instance of the CreateInstanceBinder.
protected CreateInstanceBinder ( CallInfo callInfo ) : System.Dynamic.Utils
callInfo CallInfo The signature of the arguments at the call site.
리턴 System.Dynamic.Utils

FallbackCreateInstance() 공개 메소드

Performs the binding of the dynamic create operation if the target dynamic object cannot bind.
public FallbackCreateInstance ( DynamicMetaObject target, DynamicMetaObject args ) : DynamicMetaObject
target DynamicMetaObject The target of the dynamic create operation.
args DynamicMetaObject The arguments of the dynamic create operation.
리턴 DynamicMetaObject

FallbackCreateInstance() 공개 추상적인 메소드

When overridden in the derived class, performs the binding of the dynamic create operation if the target dynamic object cannot bind.
public abstract FallbackCreateInstance ( DynamicMetaObject target, DynamicMetaObject args, DynamicMetaObject errorSuggestion ) : DynamicMetaObject
target DynamicMetaObject The target of the dynamic create operation.
args DynamicMetaObject The arguments of the dynamic create operation.
errorSuggestion DynamicMetaObject The binding result to use if binding fails, or null.
리턴 DynamicMetaObject