Skip to main content

IHasResponseFilterAsync

This interface can be implemented by an attribute which adds an response filter for the specific response DTO the attribute marked.

Assembly: ServiceStack.Interfaces.dll
View Source
Declaration
public interface IHasResponseFilterAsync : IResponseFilterBase

Methods

ResponseFilterAsync(IRequest, IResponse, Object)

The response filter is executed after the service

View Source
Declaration
Task ResponseFilterAsync(IRequest req, IResponse res, object response)
Returns

System.Threading.Tasks.Task

Parameters
TypeNameDescription
ServiceStack.Web.IRequestreqThe http request wrapper

| | ServiceStack.Web.IResponse | res | The http response wrapper

| | System.Object | response | |