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
Afficher le fichier Open project: rtezli/Blitzableiter Class Usage Examples

Méthodes publiques

Méthode 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

Méthodes protégées

Méthode Description
Parse ( ) : void

Parses this object out of a stream

Method Details

DefineBinaryData() public méthode

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.
Résultat System

Parse() protected méthode

Parses this object out of a stream
protected Parse ( ) : void
Résultat void

ToString() public méthode

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

Verify() public méthode

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

Write() public méthode

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