C# Class ICSharpCode.SharpZipLib.Zip.RawTaggedData

A raw binary tagged value
Inheritance: ITaggedData
Show file Open project: fanfeilong/exceltk Class Usage Examples

Public Methods

Method Description
GetData ( ) : byte[]

Get the binary data representing this instance.

RawTaggedData ( short tag ) : System

Initialise a new instance.

SetData ( byte data, int offset, int count ) : void

Set the data from the raw values provided.

Method Details

GetData() public method

Get the binary data representing this instance.
public GetData ( ) : byte[]
return byte[]

RawTaggedData() public method

Initialise a new instance.
public RawTaggedData ( short tag ) : System
tag short The tag ID.
return System

SetData() public method

Set the data from the raw values provided.
public SetData ( byte data, int offset, int count ) : void
data byte The raw data to extract values from.
offset int The index to start extracting values from.
count int The number of bytes available.
return void