C# 클래스 FlatRedBall.Instructions.Reflection.LateBinder

파일 보기 프로젝트 열기: vchelaru/FlatRedBall

공개 메소드들

메소드 설명
GetInstance ( Type type ) : LateBinder
GetValue ( object target, string name ) : object
GetValueStatic ( object target, string name ) : object
IsReadOnly ( string name ) : bool
IsWriteOnly ( string name ) : bool
SetValue ( object target, string name, object value ) : void
SetValueStatic ( object target, string name, object value ) : void
TryGetValue ( object target, string name, object &result ) : bool
TryGetValueStatic ( object target, string name, object &result ) : bool

메소드 상세

GetInstance() 공개 정적인 메소드

public static GetInstance ( Type type ) : LateBinder
type System.Type
리턴 LateBinder

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

public abstract GetValue ( object target, string name ) : object
target object
name string
리턴 object

GetValueStatic() 공개 정적인 메소드

public static GetValueStatic ( object target, string name ) : object
target object
name string
리턴 object

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

public abstract IsReadOnly ( string name ) : bool
name string
리턴 bool

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

public abstract IsWriteOnly ( string name ) : bool
name string
리턴 bool

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

public abstract SetValue ( object target, string name, object value ) : void
target object
name string
value object
리턴 void

SetValueStatic() 공개 정적인 메소드

public static SetValueStatic ( object target, string name, object value ) : void
target object
name string
value object
리턴 void

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

public abstract TryGetValue ( object target, string name, object &result ) : bool
target object
name string
result object
리턴 bool

TryGetValueStatic() 공개 정적인 메소드

public static TryGetValueStatic ( object target, string name, object &result ) : bool
target object
name string
result object
리턴 bool