C# Class Achamenes.ID3.Fields.Field

显示文件 Open project: sahands/a-id3

Public Methods

Method Description
Parse ( byte data, int offset ) : int

When overridden in a derived class, parses the field data from the given byte array starting at position 'offset'.

WriteToStream ( Stream stream ) : void

When overridden in a derived class, writes the field to a given stream.

Method Details

Parse() public method

When overridden in a derived class, parses the field data from the given byte array starting at position 'offset'.
public Parse ( byte data, int offset ) : int
data byte Byte array to parse from.
offset int Index in the byte array at which parsing starts.
return int

WriteToStream() public method

When overridden in a derived class, writes the field to a given stream.
/// The passed stream was null. ///
public WriteToStream ( Stream stream ) : void
stream Stream The stream to write to.
return void