C# Class SwfDotNet.IO.Tags.Types.VideoPacket

Abstract Video Packet class
Show file Open project: bladecoding/SwfExport Class Usage Examples

Public Methods

Method Description
GetSizeOf ( ) : int

Gets the size of.

ReadData ( BufferedBinaryReader binaryReader ) : void

Reads the data.

Serialize ( XmlWriter writer ) : void

Serializes to the specified writer.

WriteTo ( BinaryWriter writer ) : void

Writes to a binary writer.

Method Details

GetSizeOf() public abstract method

Gets the size of.
public abstract GetSizeOf ( ) : int
return int

ReadData() public abstract method

Reads the data.
public abstract ReadData ( BufferedBinaryReader binaryReader ) : void
binaryReader SwfDotNet.IO.Utils.BufferedBinaryReader Binary reader.
return void

Serialize() public abstract method

Serializes to the specified writer.
public abstract Serialize ( XmlWriter writer ) : void
writer System.Xml.XmlWriter Writer.
return void

WriteTo() public abstract method

Writes to a binary writer.
public abstract WriteTo ( BinaryWriter writer ) : void
writer System.IO.BinaryWriter Writer.
return void