Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# return error status code based on exception

return new NotModified();

public class NotModified : IHttpActionResult
{
    public Task<HttpResponseMessage> ExecuteAsync(CancellationToken cancellationToken)
    {
        var response = new HttpResponseMessage(HttpStatusCode.NotModified);
        return Task.FromResult(response);
    }
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #return #error #status #code #based #exception
ADD COMMENT
Topic
Name
7+8 =