ColinChang.OssHelper 1.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package ColinChang.OssHelper --version 1.2.0
NuGet\Install-Package ColinChang.OssHelper -Version 1.2.0
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.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ColinChang.OssHelper --version 1.2.0
#r "nuget: ColinChang.OssHelper, 1.2.0"
#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.0

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

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(ObjectType category);

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

/// <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="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 449 5/11/2023
1.2.6 444 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

Optimize package extensibility.