Stefan Matsson
Stefan Matsson
I can see why this is confusing. :) The linked blog post announces the new tusd 2.0 release (notice the last `d`). tusd is the official server implementation for go....
Great! Most of the improvements doesn't really apply to the dotnet version as these are specific to the go implementation. tusd and tusdotnet live their own lives and are not...
> Exactly, that is the intention here. The value of Idempotency-Key cannot be used for retrieving the offset, but just for retrying the upload creation in a way that servers...
@Acconut Yes makes sense. Thanks for clarifying!
>1) Indicating the upload length I don't have a perfect solution to this but FWIW tus uses `Upload-Length` to indicate this value. >2) Indicating the server's upload limit From experience...
My two cents: I would avoid the word "chunk" as it's been a source of confusion in tus. There is ambiguity if it refers to part of the upload, a...
To add to Marius' list above: Can the server do anything about a request where only part of a message with transfer-encoding arrives? E.g. a partial message with transfer-encoding: gzip...
I have updated the [tusdotnet POC](https://github.com/tusdotnet/tusdotnet/tree/POC/tus2) to add support for Content-Location. For now it will call [user code](https://github.com/tusdotnet/tusdotnet/blob/POC/tus2/Source/TestSites/AspNetCore_netcoreapp3.1_TestApp/MyTusHandler.cs#L73) each time the Content-Location is requested and the user code can determine...
@R2D221 Great idea! Feel free to submit a PR if you have any suggestion on how to solve this. From your example I'm guessing that you would want to add...
@laughinggoose that is actually a very good idea. There is basically no different between a void method with parameters and a property setter. I could update the code to check...