Interface IRateLimitEvent
Event containing information about the happened rate limit event
Namespace: PnP.Core.Services
Assembly: PnP.Core.dll
Syntax
public interface IRateLimitEvent
Properties
Limit
Maximum number of requests per window
Declaration
int Limit { get; }
Property Value
System.Int32
|
Properties
Event property bag
Declaration
IDictionary<string, object> Properties { get; }
Property Value
IDictionary<System.String, System.Object>
|
Remaining
The remaining requests in the current window.
Declaration
int Remaining { get; }
Property Value
System.Int32
|
Request
Request that was retried
Declaration
Uri Request { get; }
Property Value
Uri
|
Reset
The time, in
Declaration
int Reset { get; }
Property Value
System.Int32
|