Skip to content

Instantly share code, notes, and snippets.

View SimonLuckenuik's full-sized avatar
☁️
I have my head in the clouds!

Simon Luckenuik SimonLuckenuik

☁️
I have my head in the clouds!
View GitHub Profile
@SimonLuckenuik
SimonLuckenuik / HttpRequests.cs
Last active December 29, 2020 16:38
Concept example: Hosting an AspNetCore WebAPI inside an Azure Functions
using System.Configuration;
using System.IO;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Azure.WebJobs;