| QdbBatchBlobPut Method |
Adds a "Put" operation to the batch: "Create a new blob with the specified content. Fails if the blob already exists."
Namespace:
Quasardb
Assembly:
Quasardb (in Quasardb.dll) Version: 3.15.0.0 (3.15.0.0)
Syntax public IQdbFuture Put(
byte[] content,
DateTime? expiryTime = null
)
Public Function Put (
content As Byte(),
Optional expiryTime As DateTime? = Nothing
) As IQdbFuture
Parameters
- content
- Type: SystemByte
The content of the blob to be created. - expiryTime (Optional)
- Type: SystemNullableDateTime
The expiry time of the blob.
Return Value
Type:
IQdbFutureA future that will contain the result of the operation after the batch is run.
See Also