using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NzbDrone.Common.Http { public interface IHttpRequestInterceptor { HttpRequest PreRequest(HttpRequest request); HttpResponse PostResponse(HttpResponse response); } }