コード例 #1
0
 public ThrottlingMessageHandler(TimeSpanSemaphore execTimeSpanSemaphore, HttpMessageHandler innerHandler)
     : base(innerHandler)
 {
     _execTimeSpanSemaphore = execTimeSpanSemaphore;
 }
コード例 #2
0
 public ThrottlingMessageHandler(TimeSpanSemaphore execTimeSpanSemaphore)
     : this(execTimeSpanSemaphore, new HttpClientHandler {
     AllowAutoRedirect = true
 })
 {
 }