Table of Contents

Class EndpointRateLimit

Namespace
Ando.Server.Configuration
Assembly
Ando.Server.dll

Rate limit configuration for a specific endpoint category.

public class EndpointRateLimit
Inheritance
EndpointRateLimit
Inherited Members

Properties

PermitLimit

Maximum number of requests allowed in the time window.

public int PermitLimit { get; set; }

Property Value

int

QueueLimit

Maximum number of requests to queue when limit is reached. Requests beyond this are rejected immediately.

public int QueueLimit { get; set; }

Property Value

int

WindowSeconds

Time window in seconds for the rate limit.

public int WindowSeconds { get; set; }

Property Value

int