Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stijnmoreels/nmct.own.httpresponse
A Http Response Helper for your API
https://github.com/stijnmoreels/nmct.own.httpresponse
Last synced: 26 days ago
JSON representation
A Http Response Helper for your API
- Host: GitHub
- URL: https://github.com/stijnmoreels/nmct.own.httpresponse
- Owner: stijnmoreels
- Created: 2015-06-24T12:18:32.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2022-11-26T10:53:13.000Z (almost 2 years ago)
- Last Synced: 2023-02-28T18:15:31.965Z (over 1 year ago)
- Language: C#
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nmct.own.httpresponse
A Http Response Helper for your APISample API
```
public class PersonApiController : ApiController
{
public HttpResponseMessage Get()
{
try
{
return HttpResponseHelper.ReturnSuccesfulMessage();
}
catch(Exception ex)
{
return HttpResponseHelper.ReturnBadRequest();
}
}
}
```