EmbedIO v2.1.0 Release Notes

Release Date: 2018-12-11 // over 5 years ago
    • ๐Ÿ‘Œ Support to IPv6 (Issue #214)

    You can setup IPv6 in two ways:

    Using new EndPointManager.UseIpv6 will set IPAddress.IPv6Any for * hostname:

    EndPointManager.UseIpv6 = true;
    var instance = new WebServer("http://*:8877");
    

    Or directly using the IPv6 address like the lookback:

    var instance = new WebServer("http://[::1]:8877");
    
    • ๐Ÿ›  Fix WebSocket client for targets NET47 and NETCOREAPP21
    • โœ‚ Remove Task.Delay from polling (Issue #155)
    • โž• Add ConfigureAwait(false) to async invocations.