C# Class Jint.Native.Descriptor

Inheritance: JsInstance
Exibir arquivo Open project: splhack/unity-jint Class Usage Examples

Private Properties

Property Type Description
ToPropertyDesciptor Descriptor

Public Methods

Method 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

Method Description
ToPropertyDesciptor ( IGlobal global, JsDictionaryObject owner, string name, JsInstance jsInstance ) : Descriptor

8.10.5

Method Details

Delete() public method

public Delete ( ) : void
return void

Descriptor() public method

public Descriptor ( JsDictionaryObject owner, string name ) : System
owner JsDictionaryObject
name string
return System

Get() public abstract method

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.
return JsInstance

Set() public abstract method

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.
return void