C# Class Jint.Native.Descriptor

Inheritance: JsInstance
Afficher le fichier Open project: splhack/unity-jint Class Usage Examples

Private Properties

Свойство Type Description
ToPropertyDesciptor Descriptor

Méthodes publiques

Méthode Description
Delete ( ) : void
Descriptor ( JsDictionaryObject owner, string name ) : System
Get ( JsDictionaryObject that ) : JsInstance

Gets a value stored in the descriptor.

Set ( JsDictionaryObject that, JsInstance value ) : void

Sets a value.

Private Methods

Méthode Description
ToPropertyDesciptor ( IGlobal global, JsDictionaryObject owner, string name, JsInstance jsInstance ) : Descriptor

8.10.5

Method Details

Delete() public méthode

public Delete ( ) : void
Résultat void

Descriptor() public méthode

public Descriptor ( JsDictionaryObject owner, string name ) : System
owner JsDictionaryObject
name string
Résultat System

Get() public abstract méthode

Gets a value stored in the descriptor.
public abstract Get ( JsDictionaryObject that ) : JsInstance
that JsDictionaryObject A target object. This has a meaning in case of descriptors which helds an accessors, /// in value descriptors this parameter is ignored.
Résultat JsInstance

Set() public abstract méthode

Sets a value.
public abstract Set ( JsDictionaryObject that, JsInstance value ) : void
that JsDictionaryObject A target object. This has a meaning in case of descriptors which helds an accessors, /// in value descriptors this parameter is ignored.
value JsInstance A new value which should be stored in the descriptor.
Résultat void