Skip to content

Instantly share code, notes, and snippets.

View JohnnyWestlake's full-sized avatar
🐢
Not very talkative

JohnnyWestlake

🐢
Not very talkative
  • Looking for work!
  • London
View GitHub Profile
@dotMorten
dotMorten / CacheHttpHandler.cs
Created November 17, 2019 07:41
Quick and dirty implementation of etag and cache control: Note: threading issues! Don't use as is
using System;
using System.IO;
using System.Net.Http;
using System.Security.Cryptography;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace HttpCacheClient
{