NetCoreUsefullEndpoints-part 12–adding url adresses
In the Nuget NetCoreUsefullEndpoints I have added information about the current process :
You can access by going to localhost:5027/api/usefull/adresses and the end result is
The code that returns this is
1 2 3 4 5 6 | route.MapGet( "api/usefull/adresses" , (HttpContext httpContext, [FromServices] IServer server) => { var adresses = server.Features.Get<IServerAddressesFeature>(); var ret= adresses?.Addresses?.ToArray()??[] ; return TypedResults.Ok(ret); }); |
Leave a Reply