This function appends the given data in byte array to the specified stream.

Namespace: Microsoft.Cosmos.Management
Assembly: VcClient (in VcClient.dll) Version: 1.0.0.0 (1.8.400.4142)

Syntax

C#
public void Append(
	CosmosUri stream,
	byte[] data,
	bool compression
)
Visual Basic
Public Sub Append ( _
	stream As CosmosUri, _
	data As Byte(), _
	compression As Boolean _
)
Visual C++
public:
void Append(
	CosmosUri^ stream, 
	array<unsigned char>^ data, 
	bool compression
)

Parameters

stream
Type: CosmosUri
The name of the stream to which the data needs to be appended.
data
Type: array<Byte>[]()[][]
The byte array containing the data to be appended.
compression
Type: Boolean
Whether compression should be used while transferring data to the VC.

See Also