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. hmKeyValue contains keyvalue pairs and the append operation will be performed for each keyvalue pair.

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

Syntax

C#
public delegate void LogAppend(
	string stream,
	byte[] data,
	bool compression,
	IDictionary<string, string> hmKeyValue
)
Visual Basic
Public Delegate Sub LogAppend ( _
	stream As String, _
	data As Byte(), _
	compression As Boolean, _
	hmKeyValue As IDictionary(Of String, String) _
)
Visual C++
public delegate void LogAppend(
	String^ stream, 
	array<unsigned char>^ data, 
	bool compression, 
	IDictionary<String^, String^>^ hmKeyValue
)

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.
hmKeyValue
Type: IDictionary<(Of <(<'String, String>)>)>
A dictionary containing key value pairs.

See Also