Method | Description | |
---|---|---|
Call ( object obj, string func ) : object |
Calls method 'func' on object 'obj' passing parameters 'parameters'
|
|
Call2 ( object obj, string func, object parameters ) : object |
Calls method 'func' on object 'obj' passing parameters 'parameters'
|
|
CallAs ( |
Calls method 'func' on object 'obj' which is of type 'type' passing parameters 'parameters'
|
|
CallAs2 ( |
Calls method 'func' on object 'obj' which is of type 'type' passing parameters 'parameters'
|
|
Get ( object obj, string prop ) : object |
Returns the value of property 'prop' of object 'obj'
|
|
GetAs ( |
Returns the value of property 'prop' of object 'obj' which has type 'type'
|
|
GetEnum ( string typeName, string name ) : object |
Returns an enum value
|
|
GetType ( string typeName ) : |
Return a Type instance for a type 'typeName'
|
|
New ( string name ) : object |
Create a new object of a named type passing along any params
|
|
Reflector ( string ns ) : System |
Constructor
|
|
Reflector ( string an, string ns ) : System |
Constructor
|
public Call ( object obj, string func ) : object | ||
obj | object | The object on which to excute function 'func' |
func | string | The function to execute |
return | object |
public Call2 ( object obj, string func, object parameters ) : object | ||
obj | object | The object on which to excute function 'func' |
func | string | The function to execute |
parameters | object | The parameters to pass to function 'func' |
return | object |
public CallAs ( |
||
type | The type of 'obj' | |
obj | object | The object on which to excute function 'func' |
func | string | The function to execute |
return | object |
public CallAs2 ( |
||
type | The type of 'obj' | |
obj | object | The object on which to excute function 'func' |
func | string | The function to execute |
parameters | object | The parameters to pass to function 'func' |
return | object |
public Get ( object obj, string prop ) : object | ||
obj | object | The object containing 'prop' |
prop | string | The property name |
return | object |
public GetAs ( |
||
type | The type of 'obj' | |
obj | object | The object containing 'prop' |
prop | string | The property name |
return | object |
public GetEnum ( string typeName, string name ) : object | ||
typeName | string | The name of enum type |
name | string | The name of the value |
return | object |
public GetType ( string typeName ) : |
||
typeName | string | The name of the type |
return |
public New ( string name ) : object | ||
name | string | The name of the type to create |
return | object |
public Reflector ( string ns ) : System | ||
ns | string | The namespace containing types to be used |
return | System |
public Reflector ( string an, string ns ) : System | ||
an | string | A specific assembly name (used if the assembly name does not tie exactly with the namespace) |
ns | string | The namespace containing types to be used |
return | System |