Tus.Net.Client
1.0.0
See the version list below for details.
dotnet add package Tus.Net.Client --version 1.0.0
NuGet\Install-Package Tus.Net.Client -Version 1.0.0
<PackageReference Include="Tus.Net.Client" Version="1.0.0" />
paket add Tus.Net.Client --version 1.0.0
#r "nuget: Tus.Net.Client, 1.0.0"
// Install Tus.Net.Client as a Cake Addin #addin nuget:?package=Tus.Net.Client&version=1.0.0 // Install Tus.Net.Client as a Cake Tool #tool nuget:?package=Tus.Net.Client&version=1.0.0
Tus.Net.Client
A lightweight header for connecting to a server that supports the TUS protocol. This API has two layers, the first layer (included from version 0.0.1) are built using HttpClient and HttpRequestMessage/Response setup.
Packages
Current Nuget packages are available here: https://www.nuget.org/packages/Tus.Net.Client/
Usage
Part 1/2: TusProtocol
You can use the TusProtocol class to access the following requests directly:
Core Functionality
- HEAD: Used to find how much of a file has been uploaded, it returns a header containing the number of bytes that have been uploaded
- PATCH: Used to upload a piece of a file, sequentially, by stating the start byte (used by getting the response from "HEAD") and the number of bytes to upload with this patch. It automatically adjusts for the last patch to the server.
- OPTIONS: Used to find out information about the server, for example, the optional methods that have been implemented and the TUS protocol version supported by the server.
Extension Functionality
- CREATION: Used to initiate an upload to a server, by sending the total amount of bytes that will be uploaded, and the name of a file. It will return a HttpResponseMessage containing the link of the upload as a header.
- TERMINATION: Used to delete a partial or full upload. It will return a HttpRequestMessage with a 204 Status Code if successful.
Part 2/2: TusClient
You can use the wrapped TusClient to have a higher level of abstraction to a TUS server.
Mor information coming soon.
Info about TUS
You can find out more about the TUS protocol here: https://tus.io/ You can see the protocol here: https://tus.io/protocols/resumable-upload.html
Tip!
Always happy to receive donations to help me support my work or buy pizza.
BSC: 0x44ed8E0c45b82d12cAF02f73294fa9AfED48eD80
ETH: 0x44ed8E0c45b82d12cAF02f73294fa9AfED48eD80
BTC: 1Jwk86Rx42aJqKymBaCwtM8nqBinxGqMpX
License
MIT: Copyright (c) 2021 Hoss
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. 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. |
-
net5.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.