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

bytecode instruction object
Inheritance: MultiByteAction
Mostra file Open project: bladecoding/SwfExport Class Usage Examples

Public Properties

Property Type Description
ActionRecord System.Collections.ArrayList
Name string
ParameterList string[]

Private Properties

Property Type Description

Public Methods

Method Description
ActionDefineFunction ( string n, string parmList, ArrayList actionRec ) : System

constructor

Compile ( BinaryWriter w ) : void
ToString ( ) : string

overriden ToString method

Method Details

ActionDefineFunction() public method

constructor
public ActionDefineFunction ( string n, string parmList, ArrayList actionRec ) : System
n string function name
parmList string funtion parameters
actionRec System.Collections.ArrayList inner action block (function body)
return System

Compile() public method

public Compile ( BinaryWriter w ) : void
w System.IO.BinaryWriter
return void

ToString() public method

overriden ToString method
public ToString ( ) : string
return string

Property Details

ActionRecord public_oe property

inner actions (function body)
public ArrayList,System.Collections ActionRecord
return System.Collections.ArrayList

Name public_oe property

function name
public string Name
return string

ParameterList public_oe property

list of function parameters
public string[] ParameterList
return string[]