C# Class AjScript.Language.DynamicObject

Inheritance: IObject
Afficher le fichier Open project: ajlopez/AjScript Class Usage Examples

Méthodes publiques

Méthode Description
DynamicObject ( ) : System
DynamicObject ( IFunction function ) : System
GetNames ( ) : ICollection
GetValue ( string name ) : object
HasName ( string name ) : bool
Invoke ( ICallable method, object parameters ) : object
Invoke ( string name, object parameters ) : object
IsNativeMethod ( string name ) : bool
RemoveValue ( string name ) : void
SetValue ( string name, object value, bool enumerable = true ) : void

Method Details

DynamicObject() public méthode

public DynamicObject ( ) : System
Résultat System

DynamicObject() public méthode

public DynamicObject ( IFunction function ) : System
function IFunction
Résultat System

GetNames() public méthode

public GetNames ( ) : ICollection
Résultat ICollection

GetValue() public méthode

public GetValue ( string name ) : object
name string
Résultat object

HasName() public méthode

public HasName ( string name ) : bool
name string
Résultat bool

Invoke() public méthode

public Invoke ( ICallable method, object parameters ) : object
method ICallable
parameters object
Résultat object

Invoke() public méthode

public Invoke ( string name, object parameters ) : object
name string
parameters object
Résultat object

IsNativeMethod() public méthode

public IsNativeMethod ( string name ) : bool
name string
Résultat bool

RemoveValue() public méthode

public RemoveValue ( string name ) : void
name string
Résultat void

SetValue() public méthode

public SetValue ( string name, object value, bool enumerable = true ) : void
name string
value object
enumerable bool
Résultat void