C# Class DtaSpy.BizTalkBlockStream

Utility write-only stream for fragmenting a raw message part into BizTalk blocks. Use this if you need to get hold of the individual blocks (by supplying your own custom IBlockWriter). Use BizTalkFragmentStream for higher level compression/decompression.
Inheritance: Stream
Afficher le fichier Open project: niik/DtaSpy Class Usage Examples

Méthodes publiques

Méthode Description
BizTalkBlockStream ( IBlockWriter blockWriter ) : System
BizTalkBlockStream ( Stream output ) : System
Close ( ) : void
Flush ( ) : void
Read ( byte buffer, int offset, int count ) : int
Seek ( long offset, SeekOrigin origin ) : long
SetLength ( long value ) : void
Write ( byte buffer, int offset, int count ) : void

Private Methods

Méthode Description
ClearBuffer ( ) : void
FlushBuffer ( ) : void

Method Details

BizTalkBlockStream() public méthode

public BizTalkBlockStream ( IBlockWriter blockWriter ) : System
blockWriter IBlockWriter
Résultat System

BizTalkBlockStream() public méthode

public BizTalkBlockStream ( Stream output ) : System
output Stream
Résultat System

Close() public méthode

public Close ( ) : void
Résultat void

Flush() public méthode

public Flush ( ) : void
Résultat void

Read() public méthode

public Read ( byte buffer, int offset, int count ) : int
buffer byte
offset int
count int
Résultat int

Seek() public méthode

public Seek ( long offset, SeekOrigin origin ) : long
offset long
origin SeekOrigin
Résultat long

SetLength() public méthode

public SetLength ( long value ) : void
value long
Résultat void

Write() public méthode

public Write ( byte buffer, int offset, int count ) : void
buffer byte
offset int
count int
Résultat void