Skip to content

Instantly share code, notes, and snippets.

@codemillmatt
Created May 27, 2021 19:11
Show Gist options
  • Save codemillmatt/7ef9a84e8a250a267ccccb88df98e379 to your computer and use it in GitHub Desktop.
Save codemillmatt/7ef9a84e8a250a267ccccb88df98e379 to your computer and use it in GitHub Desktop.
Funky iPad Function
[FunctionName("LetsGetFunky")]
public static async Task<IActionResult> Run(
[HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req,
ILogger log)
{
string[] thingsICanDo = new string[] {
"Write .NET apps on an IPAD!!",
"Write Azure Functions on an IPAD!!",
"Write blogs on an IPAD!!!"
};
return new OkObjectResult(thingsICanDo);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment