FilterChain.doFilter

Applies this filter chain link's filter to the given request and response, and then if there's another link in the chain, calls it to apply its filter thereafter, and so on until the chain is complete or a filter has short-circuited without calling filterChain.doFilter.

class FilterChain
void
doFilter
(
ref ServerHttpRequest request
,
ref ServerHttpResponse response
)

Parameters

request ServerHttpRequest

The request.

response ServerHttpResponse

The response.