Table of Contents

Enum RateLimitWaitMode

Namespace
RateLimitClient
Assembly
RateLimitClient.dll

Specifies when rate limit delays should be applied.

public enum RateLimitWaitMode

Fields

AfterResponse = 1

Wait after receiving the response. This ensures rate limit info is applied to subsequent requests.

BeforeRequest = 0

Wait before sending the request. This prevents sending requests that would be rate limited.

Never = 2

Never wait automatically. The caller is responsible for handling rate limits.