Class PersistenceSaveBytesInput
Input data transfer object for saving bytes to the blob store.
Inherited Members
Namespace: Serenity.Persistence.Application.DTO
Assembly: Serenity.Global.Application.dll
Syntax
public class PersistenceSaveBytesInput
Constructors
PersistenceSaveBytesInput(string, byte[])
Initializes a new instance of the PersistenceSaveBytesInput class.
Declaration
public PersistenceSaveBytesInput(string key, byte[] data)
Parameters
| Type | Name | Description |
|---|---|---|
| string | key | The key under which to store the byte array. |
| byte[] | data | The byte array to store. |
Fields
Data
Declaration
public byte[] Data
Field Value
| Type | Description |
|---|---|
| byte[] | The byte array to store. |
Key
Declaration
public string Key
Field Value
| Type | Description |
|---|---|
| string | The key under which to store the byte array. |