Skip to content

Instantly share code, notes, and snippets.

@casper-rasmussen
Created November 15, 2016 19:29
Show Gist options
  • Save casper-rasmussen/10b8cd33573c542451905cff2518e2dc to your computer and use it in GitHub Desktop.
Save casper-rasmussen/10b8cd33573c542451905cff2518e2dc to your computer and use it in GitHub Desktop.
[System.Web.Http.HttpGet]
public async Task<IHttpActionResult> Load()
{
//Run your language dependent code
string date = DateTime.Now.ToString(ContentLanguage.PreferredCulture);
return Ok(date);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment