Click or drag to resize

AzureStreamerOpenAppend Method

Opens a blob for append. If the blob is being created or the existing blob type is Append then it will be efficiently processed as an Append blob. If the existing blob is type Block then the type can't be changed and an inefficient workaround is used to merge the old and appended data into a work blob which is then copied back over the original at close time.

Namespace: RCS.Carbon.Variables
Assembly: RCS.Carbon.Variables (in RCS.Carbon.Variables.dll) Version: 9.0.12
Syntax
C#
public bool OpenAppend(
	string name
)

Parameters

name  String
Name of the blob to open for appending.

Return Value

Boolean
Always returns true.

Implements

IStreamerOpenAppend(String)
Exceptions
ExceptionCondition
CarbonExceptionThrown if the existing blob type is unrecognised.
See Also