You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
569 B
569 B
LINGYUN.Abp.Elsa.Activities.BlobStoring
Elsa工作流的Blob存储活动集成模块
功能
- 提供以下Blob存储活动:
- BlobExists: 检查Blob是否存在
- WriteBlob: 写入Blob数据
- ReadBlob: 读取Blob数据
- DeleteBlob: 删除Blob数据
配置使用
[DependsOn(
typeof(AbpElsaActivitiesBlobStoringModule)
)]
public class YouProjectModule : AbpModule
{
}
appsettings.json
{
"Elsa": {
"BlobStoring": true // 启用Blob存储活动
}
}