/Assets/Samples/WebApi/DuckDuckGoSearchController.cs
https://github.com/bitcake/bitstrap · C# · 11 lines · 10 code · 0 blank · 1 comment · 0 complexity · 59ae32ae0b08fdf8ee20bd7a753315c9 MD5 · raw file
- namespace BitStrap.Examples
- {
- //http://api.duckduckgo.com/?q=goku&format=json
- [WebUrl( "" )]
- public class DuckDuckGoSearchController : WebController<DuckDuckGoSearchController>
- {
- [WebUrl( "" )]
- [WebAction( WebMethod.GET, "", "format" )]
- public WebAction<string> web;
- }
- }