IRequestHttpHandler
Assembly: ServiceStack.dll
View Source
Declaration
public interface IRequestHttpHandler
Properties
RequestName
View Source
Declaration
string RequestName { get; }
Methods
CreateRequestAsync(IRequest, String)
View Source
Declaration
Task<object> CreateRequestAsync(IRequest req, string operationName)
Returns
System.Threading.Tasks.Task<System.Object>
Parameters
Type | Name |
---|---|
ServiceStack.Web.IRequest | req |
System.String | operationName |
GetResponseAsync(IRequest, Object)
View Source
Declaration
Task<object> GetResponseAsync(IRequest httpReq, object request)
Returns
System.Threading.Tasks.Task<System.Object>
Parameters
Type | Name |
---|---|
ServiceStack.Web.IRequest | httpReq |
System.Object | request |
HandleResponse(IRequest, IResponse, Object)
View Source
Declaration
Task HandleResponse(IRequest httpReq, IResponse httpRes, object response)
Returns
System.Threading.Tasks.Task
Parameters
Type | Name |
---|---|
ServiceStack.Web.IRequest | httpReq |
ServiceStack.Web.IResponse | httpRes |
System.Object | response |