Skip to content

Instantly share code, notes, and snippets.

View siewers's full-sized avatar

Kenneth Siewers Møller siewers

View GitHub Profile
@siewers
siewers / AzureBlobContentDisposition.cs
Created February 24, 2017 14:26
Stream HTTP content directly to Azure blob storage
namespace Azure
{
using System.Net.Http.Headers;
public class AzureBlobContentDisposition
{
public AzureBlobContentDisposition(ContentDispositionHeaderValue headerValue)
{
this.FileName = headerValue?.FileName;
}