Skip to content

DotNET client implementation of the Tus protocol for resumable file uploads.

License

Notifications You must be signed in to change notification settings

breenbob/BirdMessenger

 
 

Repository files navigation

BirdMessenger

NuGetNuGet

"Our aim is to solve the problem of unreliable file uploads once and for all. tus is a new open protocol for resumable uploads built on HTTP. It offers simple, cheap and reusable stacks for clients and servers. It supports any language, any platform and any network." - https://tus.io

BirdMessenger 中文名为:青鸟——相传为西王母的信使。 BirdMessnger 是一个基于.NET Standard 的 Tus协议的实现客户端。

Features

Protocol implementation

  • Create
  • HEAD
  • PATCH
  • OPTIONS
  • DELETE

Install

Package manager

Install-Package BirdMessenger -Version 1.0.0

.NET CLI

dotnet add package BirdMessenger --version 1.0.0

Getting Started

            FileInfo fileInfo = new FileInfo("test");           
            var hostUri = new Uri(@"http://localhost:5000/files");
            var tusClient=TusBuild.DefaultTusClientBuild(hostUri)
                .Build();
            tusClient.Uploading += printUploadProcess;
            tusClient.UploadFinish += UploadFinish;
            Dictionary<string, string> dir = new Dictionary<string, string>();
            dir["filename"] = fileInfo.FullName;

            var fileUrl = await tusClient.Create(fileInfo, dir);
            var uploadResult = await tusClient.Upload(fileUrl, fileInfo);
  • You can see more examples in unit tests

Document

Wiki

Roadmap

I will develop in branch of dev

Who is using

Support and Sponsorship

About

DotNET client implementation of the Tus protocol for resumable file uploads.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%