Class PersistenceAppendBytesInput
Input data transfer object for appending bytes to an existing blob.
Inherited Members
Namespace: Serenity.Persistence.Application.DTO
Assembly: Serenity.Global.Application.dll
Syntax
public class PersistenceAppendBytesInput
Constructors
PersistenceAppendBytesInput(string, byte[], bool)
Initializes a new instance of the PersistenceAppendBytesInput class.
Declaration
public PersistenceAppendBytesInput(string key, byte[] dataToAppend, bool createIfMissing)
Parameters
| Type | Name | Description |
|---|---|---|
| string | key | The key under which the blob is stored. |
| byte[] | dataToAppend | The byte array to append. |
| bool | createIfMissing | Whether to create a new blob if one does not exist. |
Fields
CreateIfMissing
Declaration
public bool CreateIfMissing
Field Value
| Type | Description |
|---|---|
| bool | Whether to create a new blob if one does not exist. |
DataToAppend
Declaration
public byte[] DataToAppend
Field Value
| Type | Description |
|---|---|
| byte[] | The byte array to append. |
Key
Declaration
public string Key
Field Value
| Type | Description |
|---|---|
| string | The key under which the blob is stored. |