C# Class ICSharpCode.SharpZipLib.Zip.RawTaggedData

A raw binary tagged value
Inheritance: ITaggedData
Afficher le fichier Open project: fanfeilong/exceltk Class Usage Examples

Méthodes publiques

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

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

RawTaggedData() public méthode

Initialise a new instance.
public RawTaggedData ( short tag ) : System
tag short The tag ID.
Résultat System

SetData() public méthode

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