Skip to content

Instantly share code, notes, and snippets.

View alexandredsimoes's full-sized avatar

Alexandre Dias Simões alexandredsimoes

View GitHub Profile
@alexandredsimoes
alexandredsimoes / ETagMiddleware.cs
Created October 12, 2020 15:10 — forked from madskristensen/ETagMiddleware.cs
ASP.NET Core ETAg middleware
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.WebUtilities;
using Microsoft.Net.Http.Headers;
using System.IO;
using System.Security.Cryptography;
using System.Threading.Tasks;
public class ETagMiddleware
{