Interface IRateLimitEvent
Event containing information about the happened rate limit event
public interface IRateLimitEvent
Properties
Limit
Maximum number of requests per window
int Limit { get; }
Property Value
Properties
Event property bag
IDictionary<string, object> Properties { get; }
Property Value
Remaining
The remaining requests in the current window.
int Remaining { get; }
Property Value
Request
Request that was retried
Uri Request { get; }
Property Value
Reset
The time, in Seconds, when the current window gets reset
int Reset { get; }