Table of Contents

Interface IRateLimitEvent

Namespace
PnP.Core.Services
Assembly
PnP.Core.dll

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

int

Properties

Event property bag

IDictionary<string, object> Properties { get; }

Property Value

IDictionary<string, object>

Remaining

The remaining requests in the current window.

int Remaining { get; }

Property Value

int

Request

Request that was retried

Uri Request { get; }

Property Value

Uri

Reset

The time, in Seconds, when the current window gets reset

int Reset { get; }

Property Value

int