C# Класс SGDE.Content.Code.Library.Object

The Object class is at the root of the ActionScript class hierarchy.
Показать файл Открыть проект

Открытые методы

Метод Описание
Object ( ) : System

Creates an Object object and stores a reference to the object's constructor method in the object's constructor property.

hasOwnProperty ( String name ) : Boolean

Indicates whether an object has a specified property defined.

isPrototypeOf ( Object theClass ) : Boolean

Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.

propertyIsEnumerable ( String name ) : Boolean

Indicates whether the specified property exists and is enumerable.

toLocaleString ( ) : String

Returns the string representation of this object, formatted according to locale-specific conventions.

toString ( ) : String

Returns the string representation of the specified object.

valueOf ( ) : Object

Returns the primitive value of the specified object.

Приватные методы

Метод Описание
Object ( bool getConstructor, bool getType ) : System

Описание методов

Object() публичный Метод

Creates an Object object and stores a reference to the object's constructor method in the object's constructor property.
public Object ( ) : System
Результат System

hasOwnProperty() публичный Метод

Indicates whether an object has a specified property defined.
public hasOwnProperty ( String name ) : Boolean
name String The property of the object.
Результат Boolean

isPrototypeOf() публичный Метод

Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
public isPrototypeOf ( Object theClass ) : Boolean
theClass Object The class to which the specified object may refer.
Результат Boolean

propertyIsEnumerable() публичный Метод

Indicates whether the specified property exists and is enumerable.
public propertyIsEnumerable ( String name ) : Boolean
name String The property of the object.
Результат Boolean

toLocaleString() публичный Метод

Returns the string representation of this object, formatted according to locale-specific conventions.
public toLocaleString ( ) : String
Результат String

toString() публичный Метод

Returns the string representation of the specified object.
public toString ( ) : String
Результат String

valueOf() публичный Метод

Returns the primitive value of the specified object.
public valueOf ( ) : Object
Результат Object