Click or drag to resize

IVaultProtocolCreateFileContentPartContinue Method

Continues the file content creation process by sequentially providing a chunk of binary data.

Namespace:  PDTec.IceNet.Core.Database
Assembly:  PDTec.IceNet.Core (in PDTec.IceNet.Core.dll) Version: 7.2.0.0 (7.2.7583.15464)
Syntax
C#
void CreateFileContentPartContinue(
	string contentUuid,
	string correlationId,
	int sequenceNumber,
	long offset,
	byte[] aContentPart
)

Parameters

contentUuid
Type: SystemString
The content UUID.
correlationId
Type: SystemString
The correlation ID received by CreateFileContentPartStart(String).
sequenceNumber
Type: SystemInt32
The sequential number of the provided chunk, starting from 0.
offset
Type: SystemInt64
The current offset (the aggregated size of all previously provided chunks of data) to verify data consistency.
aContentPart
Type: SystemByte
A chunk of the binary file content.
See Also