C# Class SwfDotNet.IO.ByteCode.Actions.BaseAction

BaseAction is an abstract class that serves as a base for all Action classes resembling swf bytecode instructions
Show file Open project: bladecoding/SwfExport Class Usage Examples

Public Properties

Property Type Description
Code int

Public Methods

Method Description
BaseAction ( ActionCode c ) : System

public constructor

Compile ( BinaryWriter writer ) : void

compile action to byte code

Method Details

BaseAction() public method

public constructor
public BaseAction ( ActionCode c ) : System
c ActionCode action code as occuring in swf. Codes are listed in this enumeration
return System

Compile() public method

compile action to byte code
public Compile ( BinaryWriter writer ) : void
writer System.IO.BinaryWriter /// Binary writer for writing byte code to stream ///
return void

Property Details

Code public property

Action code of the class when compiled to swf Action codes are enumerated in SwfDotNet.IO.ByteCode.ActionCode
public int Code
return int