C# Класс SwfDotNet.IO.ByteCode.Actions.ActionPush

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

Открытые свойства

Свойство Тип Описание
Type int
Value object

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

Метод Описание
ActionPush ( int type, object val ) : System

constructor.

Compile ( BinaryWriter w ) : void
CompileBody ( BinaryWriter w ) : void

compile push type and value (but not action code), so method can be used by ActionPushList as well

GetIntValue ( ) : int

get push value as int

GetStringValue ( ) : string

get value as string

ToString ( ) : string

overriden ToString method

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

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

constructor.
public ActionPush ( int type, object val ) : System
type int push type
val object push value
Результат System

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

public Compile ( BinaryWriter w ) : void
w System.IO.BinaryWriter
Результат void

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

compile push type and value (but not action code), so method can be used by ActionPushList as well
public CompileBody ( BinaryWriter w ) : void
w System.IO.BinaryWriter
Результат void

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

get push value as int
public GetIntValue ( ) : int
Результат int

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

get value as string
public GetStringValue ( ) : string
Результат string

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

overriden ToString method
public ToString ( ) : string
Результат string

Описание свойств

Type публичное свойство

push type
public int Type
Результат int

Value публичное свойство

push value
public object Value
Результат object