Visual Studio Code – Tracing a call to a controller in .NET
I am using ITFoxTec SAML 2.0 library. From their sample code, I have this controller: [AllowAnonymous] [Route("Auth")] public class AuthController : Controller { const string relayStateReturnUrl = "ReturnUrl"; private readonly Saml2Configuration config; public AuthController(IOptions<Saml2Configuration> options) { this.config = options.Value; }…