Enum RateLimitWaitMode
- Namespace
- RateLimitClient
- Assembly
- RateLimitClient.dll
Specifies when rate limit delays should be applied.
public enum RateLimitWaitMode
Fields
AfterResponse = 1Wait after receiving the response. This ensures rate limit info is applied to subsequent requests.
BeforeRequest = 0Wait before sending the request. This prevents sending requests that would be rate limited.
Never = 2Never wait automatically. The caller is responsible for handling rate limits.