Skip to content

Instantly share code, notes, and snippets.

@wellingtonjhn
Created July 26, 2018 07:08
Show Gist options
  • Select an option

  • Save wellingtonjhn/569b5d0386215268f84005b8b21b7f63 to your computer and use it in GitHub Desktop.

Select an option

Save wellingtonjhn/569b5d0386215268f84005b8b21b7f63 to your computer and use it in GitHub Desktop.
[Route("api/[controller]")]
public class HomeController : Controller
{
public HomeController(IOptions<MySettings> settings)
{
var applicationName = settings.Value.ApplicationName;
var author = settings.Value.Author;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment