Interface IArchiveProvider
Represents the interface for providing archive functionality
Namespace: Simplic.Framework.Extension
Assembly: Simplic.Framework.Extension.dll
Syntax
public interface IArchiveProvider
Methods
| Improve this Doc View SourceGetBlob(Guid)
Get a blob from the archive and return as byte-array
Declaration
byte[] GetBlob(Guid blobGuid)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | blobGuid | Id of the blob |
Returns
Type | Description |
---|---|
System.Byte[] | Byte-array containing the blob |
SetBlob(Guid, Byte[])
Save blob in the archive
Declaration
void SetBlob(Guid blobGuid, byte[] blob)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | blobGuid | Unique id of the blob |
System.Byte[] | blob | Blob as byte array |