This function initiates concatenation of the two given streams. If the streams are on different volumes,
this operation may take some time to complete.
Namespace: Microsoft.Cosmos.ManagementAssembly: VcClient (in VcClient.dll) Version: 1.0.0.0 (1.8.400.4142)
Syntax
C# |
---|
public void Concatenate(
CosmosUri sourceStream,
CosmosUri destinationStream
) |
Visual Basic |
---|
Public Sub Concatenate ( _
sourceStream As CosmosUri, _
destinationStream As CosmosUri _
) |
Visual C++ |
---|
public:
void Concatenate(
CosmosUri^ sourceStream,
CosmosUri^ destinationStream
) |
Parameters
- sourceStream
- Type: CosmosUri
Contents to be appended to the destinationStream.
- destinationStream
- Type: CosmosUri
Destination stream for the concatenation. If this stream does not exist, it will be created.
See Also