Skip to content

Instantly share code, notes, and snippets.

View FixRM's full-sized avatar

Artem Grunin FixRM

  • Russia
View GitHub Profile
@andriybuday
andriybuday / 0 - ServiceHost.cs
Last active April 16, 2024 15:58
Microsoft.Extensions.DependencyInjection with OWIN Self-Hosted WebAPI
// ...
using Microsoft.Owin.Hosting;
// ...
public class ServiceHost
{
private IDisposable server = null;
const string baseAddress = "https://*:443";
public void Start()