ColinChang.OssHelper 1.2.7

dotnet add package ColinChang.OssHelper --version 1.2.7
NuGet\Install-Package ColinChang.OssHelper -Version 1.2.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ColinChang.OssHelper" Version="1.2.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ColinChang.OssHelper --version 1.2.7
#r "nuget: ColinChang.OssHelper, 1.2.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ColinChang.OssHelper as a Cake Addin
#addin nuget:?package=ColinChang.OssHelper&version=1.2.7

// Install ColinChang.OssHelper as a Cake Tool
#tool nuget:?package=ColinChang.OssHelper&version=1.2.7

OssHelper

Oss Helper for .Net Core, which provides STS, Policy Authentication, and common callback functions.

Functions

/// <summary>
/// 阿里云OSS STS授权
/// </summary>
/// <returns></returns>
Task<AssumeRoleResponse.AssumeRole_Credentials> GetStsAsync();

/// <summary>
/// 阿里云OSS Policy授权
/// </summary>
/// <returns></returns>
Task<dynamic> GetPolicyAsync(int category);

/// <summary>
/// OSS 通用回调
/// </summary>
/// <param name="request"></param>
/// <returns></returns>
Task<OssObject> CallbackAsync(HttpRequest request);

/// <summary>
/// 列举文件
/// </summary>
/// <param name="prefix">限定返回文件的Key必须以prefix作为前缀。如果把prefix设为某个文件夹名,则列举以此prefix开头的文件,即该文件夹下递归的所有文件和子文件夹。如果把prefix设为某个文件夹名,则列举以此prefix开头的文件,即该文件夹下递归的所有文件和子文件夹。</param>
/// <param name="marker">指定List操作需要从此文件开始</param>
/// <param name="maxKeys">指定返回Object的最大数。</param>
/// <param name="delimiter">对Object名字进行分组的字符。所有Object名字包含指定的前缀,第一次出现delimiter字符之间的Object作为一组元素</param>
/// <returns></returns>
Task<ObjectListing> ListObjectsAsync(string prefix = null, string marker = null,
    int? maxKeys = null, string delimiter = null);

/// <summary>
/// 流式下载(如果要下载的文件太大,或者一次性下载耗时太长,您可以通过流式下载,一次处理部分内容,直到完成文件的下载)
/// </summary>
/// <param name="objectName"></param>
/// <param name="filename">本地文件存储</param>
/// <returns></returns>
Task DownloadAsync(string objectName, string filename);

/// <summary>
/// 流式下载(如果要下载的文件太大,或者一次性下载耗时太长,您可以通过流式下载,一次处理部分内容,直到完成文件的下载)
/// </summary>
/// <param name="objectName"></param>
/// <returns></returns>
Task<Stream> DownloadAsync(string objectName);

/// <summary>
/// 上传对象
/// </summary>
/// <param name="filename">文件名</param>
/// <param name="objectType">对象类型. 0:Photo, 1:Video, 2:Application, 3:Other</param>
/// <param name="data">上传内容</param>
/// <returns></returns>
Task<PutObjectResult> UploadAsync(string filename, int objectType, byte[] data);

/// <summary>
/// 删除对象
/// </summary>
/// <param name="objectName"></param>
/// <returns></returns>
Task<DeleteObjectResult> DeleteObjectAsync(string objectName);

/// <summary>
/// 删除对象
/// </summary>
/// <param name="objectNames"></param>
/// <returns></returns>
Task<DeleteObjectsResult> DeleteObjectsAsync(IList<string> objectNames);

Sample

we just verify the mime type and size of the uploaded object in the Callback function. about how to use this, please check the Sample project.

be sure you've set your Access information in appsettings.json before running the sample.

Reference

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on ColinChang.OssHelper:

Package Downloads
ColinChang.OssHelper.MultiBucket

an extension for OssHelper to support multiple clients in applications.

ColinChang.OssDownloader

this is a downloader for aliyun oss resources.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.7 447 5/11/2023
1.2.6 442 5/11/2023
1.2.5 2,598 6/7/2022
1.2.4 644 6/7/2022
1.2.3 1,631 5/12/2022
1.2.2 932 4/2/2021
1.2.1 440 3/15/2021
1.2.0 548 3/13/2021
1.1.1 397 12/8/2020
1.1.0 394 12/4/2020
1.0.0 379 11/25/2020

更新upload方法名