April 2017
Intermediate to advanced
628 pages
13h 46m
English
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory) { loggerFactory.AddConsole(); if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.Run(async (context) => { await context.Response.WriteAsync($"The date is {DateTime.Now.ToString("dd MMM yyyy")}"); }); }

Read now
Unlock full access