Interface IStorageProvider
Assembly: Simplic.Framework.Extension.dll
Syntax
public interface IStorageProvider
Properties
|
Improve this Doc
View Source
TenantId
Declaration
Guid? TenantId { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Guid> |
|
Methods
|
Improve this Doc
View Source
Delete(Guid)
Deletes the blob from the storage
Declaration
Parameters
Type |
Name |
Description |
System.Guid |
id |
|
|
Improve this Doc
View Source
Read(Guid)
Reads a byte array based on a id.
Declaration
Parameters
Type |
Name |
Description |
System.Guid |
id |
|
Returns
Type |
Description |
System.Byte[] |
|
|
Improve this Doc
View Source
Write(Guid, Byte[])
Writes a byte array to a storage with a id.
Declaration
void Write(Guid id, byte[] data)
Parameters
Type |
Name |
Description |
System.Guid |
id |
|
System.Byte[] |
data |
|