Skip to content

Instantly share code, notes, and snippets.

@aramkoukia
Created April 14, 2018 20:10
Show Gist options
  • Save aramkoukia/ba398b52bd1ca6af17f7d1dfb8d7a81c to your computer and use it in GitHub Desktop.
Save aramkoukia/ba398b52bd1ca6af17f7d1dfb8d7a81c to your computer and use it in GitHub Desktop.
Opt Out of Versioning
[ApiVersionNeutral]
[Route("api/optout")]
public class OptOutControler : Controller
{
[HttpGet]
public string Get() => HttpContext.GetRequestedApiVersion().ToString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment