This appends the data in the given file to the log stream on the virtual cluster whose "key" and "value" match the key and value. hmKeyValue contains key-value pairs and the append operation will be performed for each key-value pair.

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

Syntax

C#
public void LogAppendFile(
	CosmosUri stream,
	string fileName,
	bool compression,
	IDictionary<string, string> hmKeyValue
)
Visual Basic
Public Sub LogAppendFile ( _
	stream As CosmosUri, _
	fileName As String, _
	compression As Boolean, _
	hmKeyValue As IDictionary(Of String, String) _
)
Visual C++
public:
void LogAppendFile(
	CosmosUri^ stream, 
	String^ fileName, 
	bool compression, 
	IDictionary<String^, String^>^ hmKeyValue
)

Parameters

stream
Type: CosmosUri
The base url of the log stream to which the data needs to be appended.
fileName
Type: String
Name of the file containing the data to be appended to the log stream.
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