This appends the given data in the byte array to the log stream on the virtual cluster whose "key" and "value" match the key and value.

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

Syntax

C#
public static void LogAppend(
	string stream,
	byte[] data,
	bool compression,
	string key,
	string value
)
Visual Basic
Public Shared Sub LogAppend ( _
	stream As String, _
	data As Byte(), _
	compression As Boolean, _
	key As String, _
	value As String _
)
Visual C++
public:
static void LogAppend(
	String^ stream, 
	array<unsigned char>^ data, 
	bool compression, 
	String^ key, 
	String^ value
)

Parameters

stream
Type: String
The base url of the log stream to which the data needs to be appended.
data
Type: array<Byte>[]()[][]
Byte array containing the data.
compression
Type: Boolean
Whether compression needs to be used while sending data to the virtual cluster.
key
Type: String
The name of the key for the stream.
value
Type: String
The value of the key.

See Also