C# Класс 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.

Наследование: AbstractTagHandler, ISwfCharacter
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
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

Защищенные методы

Метод Описание
Parse ( ) : void

Parses this object out of a stream

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

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

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.
Результат System

Parse() защищенный Метод

Parses this object out of a stream
protected Parse ( ) : void
Результат void

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

Converts the value of this instance to a System.String.
public ToString ( ) : string
Результат string

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

Verifies this object and its components for documentation compliance.
public Verify ( ) : bool
Результат bool

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

Writes this object back to a stream
public Write ( Stream output ) : void
output Stream The stream to write to.
Результат void