C# 클래스 ICSharpCode.SharpZipLib.Zip.RawTaggedData

A raw binary tagged value
상속: ITaggedData
파일 보기 프로젝트 열기: fanfeilong/exceltk 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

GetData() 공개 메소드

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

RawTaggedData() 공개 메소드

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

SetData() 공개 메소드

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.
리턴 void