Create a new style partial input stream buffered into chunks.

Namespace: Org.BouncyCastle.Bcpg
Assembly: ITextSharp (in ITextSharp.dll) Version: 4.1.6.0

Syntax

C#
public BcpgOutputStream(
	Stream outStr,
	PacketTag tag,
	byte[] buffer
)
Visual Basic
Public Sub New ( _
	outStr As Stream, _
	tag As PacketTag, _
	buffer As Byte() _
)
Visual C++
public:
BcpgOutputStream(
	Stream^ outStr, 
	PacketTag tag, 
	array<unsigned char>^ buffer
)

Parameters

outStr
Type: System.IO..::..Stream
Output stream to write to.
tag
Type: Org.BouncyCastle.Bcpg..::..PacketTag
Packet tag.
buffer
Type: array<System..::..Byte>[]()[][]
Buffer to use for collecting chunks.

See Also