Created
February 1, 2018 14:54
-
-
Save arichika/d66c53bde7c62439369b7b355b5a7f5c to your computer and use it in GitHub Desktop.
HowToCdOptionsCore 20180201-02
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class SampleFunction2WithOptions | |
{ | |
[FunctionName("SampleFunction2WithOptions")] | |
public static IActionResult Run( | |
[HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)]HttpRequest req, | |
TraceWriter log, | |
[CbOptions(sectionKey: "SampleBizLogic:MyBizOptions", reloadOnChange: true)]MyBizOptions options ) | |
{ | |
//... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment