Method | Description | |
---|---|---|
Create ( object target ) : |
Wraps an individual object, allowing by-name access to that instance
|
|
Create ( object target, bool allowNonPublicAccessors ) : |
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
|
public static Create ( object target ) : |
||
target | object | |
return |
public static Create ( object target, bool allowNonPublicAccessors ) : |
||
target | object | |
allowNonPublicAccessors | bool | |
return |
public abstract this ( string name ) : object | ||
name | string | |
return | object |