Skip to content

Instantly share code, notes, and snippets.

@rocklan
rocklan / ThrottleFilter.cs
Last active August 14, 2019 13:25
WebApi bandwidth throttling
using System;
using System.Net;
using System.Net.Http;
using System.Runtime.CompilerServices;
using System.Web;
using System.Web.Http.Controllers;
using System.Web.Http.Filters;
namespace Throttling
{