public ThrottlingMessageHandler(TimeSpanSemaphore execTimeSpanSemaphore, HttpMessageHandler innerHandler) : base(innerHandler) { _execTimeSpanSemaphore = execTimeSpanSemaphore; }
public ThrottlingMessageHandler(TimeSpanSemaphore execTimeSpanSemaphore) : this(execTimeSpanSemaphore, new HttpClientHandler { AllowAutoRedirect = true }) { }