From 5b9a5e8fbd8adb96a5bb85c7010dcc30ac4eb8c5 Mon Sep 17 00:00:00 2001 From: Blake Niemyjski Date: Wed, 20 Sep 2023 13:36:25 -0500 Subject: [PATCH] Expose Client as public prop for low level access --- src/Foundatio.Aliyun/Storage/AliyunFileStorage.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Foundatio.Aliyun/Storage/AliyunFileStorage.cs b/src/Foundatio.Aliyun/Storage/AliyunFileStorage.cs index 6525d97..65ebb07 100644 --- a/src/Foundatio.Aliyun/Storage/AliyunFileStorage.cs +++ b/src/Foundatio.Aliyun/Storage/AliyunFileStorage.cs @@ -43,6 +43,7 @@ public AliyunFileStorage(Builder _serializer; + public OssClient Client => _client; public async Task GetFileStreamAsync(string path, CancellationToken cancellationToken = default) { if (String.IsNullOrEmpty(path))