C# Class Recurity.Swf.TagHandler.DefineBinaryData

The DefineBinaryData tag permits arbitrary binary data to be embedded in a Swf file.

The DefineBinaryData tag permits arbitrary binary data to be embedded in a Swf file.

DefineBinaryData is a definition tag, like DefineShape and DefineSprite. It associates a blob

of binary data with a standard Swf 16-bit character ID. The character ID is entered into the

Swf file's character dictionary.

DefineBinaryData is intended to be used in conjunction with the SymbolClass tag. The

SymbolClass tag can be used to associate a DefineBinaryData tag with an AS3 class definition.

The AS3 class must be a subclass of ByteArray. When the class is instantiated, it will be

populated automatically with the contents of the binary data resource.

Inheritance: AbstractTagHandler, ISwfCharacter
Exibir arquivo Open project: rtezli/Blitzableiter Class Usage Examples

Public Methods

Method Description
DefineBinaryData ( byte InitialVersion ) : System

The DefineBinaryData tag permits arbitrary binary data to be embedded in a Swf file.

ToString ( ) : string

Converts the value of this instance to a System.String.

Verify ( ) : bool

Verifies this object and its components for documentation compliance.

Write ( Stream output ) : void

Writes this object back to a stream

Protected Methods

Method Description
Parse ( ) : void

Parses this object out of a stream

Method Details

DefineBinaryData() public method

The DefineBinaryData tag permits arbitrary binary data to be embedded in a Swf file.
public DefineBinaryData ( byte InitialVersion ) : System
InitialVersion byte The version of the Swf file using this object.
return System

Parse() protected method

Parses this object out of a stream
protected Parse ( ) : void
return void

ToString() public method

Converts the value of this instance to a System.String.
public ToString ( ) : string
return string

Verify() public method

Verifies this object and its components for documentation compliance.
public Verify ( ) : bool
return bool

Write() public method

Writes this object back to a stream
public Write ( Stream output ) : void
output Stream The stream to write to.
return void