Last active
July 29, 2017 04:15
-
-
Save salrashid123/3685c399991d10ea624b4f711eb9bc72 to your computer and use it in GitHub Desktop.
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
private static void Execute(IApplicationBuilder app) | |
{ | |
app.Run(async context => | |
{ | |
_logger.LogInformation("HTTP handler called.."); | |
await context.Response.WriteAsync("hello from .NET"); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment