eqokhttpactionresult-class
Represents a special kind of System.Web.Http.IHttpActionResult
which allows to build an OK (status code 200) response with some extra data Implements the
public class Korzh.EasyQuery.AspNet.EqOkHttpActionResult
: IHttpActionResult
Assembly: Korzh.EasyQuery.AspNet4.dll
Constructors
Name | Type | Description |
---|---|---|
EqOkHttpActionResult(HttpRequestMessage request) | void | Initializes a new instance of the Korzh.EasyQuery.AspNet.EqOkHttpActionResult class. |
EqOkHttpActionResult(object data, HttpRequestMessage request) | void | Initializes a new instance of the Korzh.EasyQuery.AspNet.EqOkHttpActionResult class. |
Fields
Name | Type | Description |
---|---|---|
Data | object | The data which should be added to the response body. |
Request | HttpRequestMessage | The request message |
Methods
Name | Type | Description |
---|---|---|
ExecuteAsync(CancellationToken cancellationToken) | Task <HttpResponseMessage > | Creates an System.Net.Http.HttpResponseMessage asynchronously. |
WriteDataToJsonAsync(JsonWriter writer, CancellationToken ct) | Task | Write the extra data to JsonWriter. |
WriteResponseAsync(Stream stream, HttpContent content, TransportContext context, CancellationToken ct) | Task | Write the response as an asynchronous operation. |