C# 클래스 Jint.Native.Descriptor

상속: JsInstance
파일 보기 프로젝트 열기: splhack/unity-jint 1 사용 예제들

Private Properties

프로퍼티 타입 설명
ToPropertyDesciptor Descriptor

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
ToPropertyDesciptor ( IGlobal global, JsDictionaryObject owner, string name, JsInstance jsInstance ) : Descriptor

8.10.5

메소드 상세

Delete() 공개 메소드

public Delete ( ) : void
리턴 void

Descriptor() 공개 메소드

public Descriptor ( JsDictionaryObject owner, string name ) : System
owner JsDictionaryObject
name string
리턴 System

Get() 공개 추상적인 메소드

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.
리턴 JsInstance

Set() 공개 추상적인 메소드

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.
리턴 void