C# Класс Jint.Native.Descriptor

Наследование: JsInstance
Показать файл Открыть проект Примеры использования класса

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