C# 클래스 Serenity.Reflection.ObjectAccessor

Represents an individual object, allowing access to members by-name
파일 보기 프로젝트 열기: volkanceylan/Serenity

공개 메소드들

메소드 설명
Create ( object target ) : ObjectAccessor

Wraps an individual object, allowing by-name access to that instance

Equals ( object obj ) : bool

Use the target types definition of equality

GetHashCode ( ) : int

Obtain the hash of the target object

ToString ( ) : string

Use the target's definition of a string representation

this ( string name ) : object

Get or Set the value of a named member for the underlying object

메소드 상세

Create() 공개 정적인 메소드

Wraps an individual object, allowing by-name access to that instance
public static Create ( object target ) : ObjectAccessor
target object
리턴 ObjectAccessor

Equals() 공개 메소드

Use the target types definition of equality
public Equals ( object obj ) : bool
obj object
리턴 bool

GetHashCode() 공개 메소드

Obtain the hash of the target object
public GetHashCode ( ) : int
리턴 int

ToString() 공개 메소드

Use the target's definition of a string representation
public ToString ( ) : string
리턴 string

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

Get or Set the value of a named member for the underlying object
public abstract this ( string name ) : object
name string
리턴 object