Microsoft Silverlight for Windows Phone
Tech blogger
Microsoft Technical Community Speaker
 Introducing lightweight ASP.NET Core
• Deployment in Azure
A new open-source and cross-platform framework for building modern
cloud-based Web applications using .NET
Choose your Editors
and Tools
Open Source
with Contributions Cross-PlatformOSS
Seamless transition
from on-premises to cloud
Faster Development CycleTotally Modular
Fast
ResponseRequest Middleware
public class Startup
{
public void Configure(IApplicationBuilder app)
{
app.UseStaticFiles();
app.UseWelcomePage();
}
}
app.Use(next =>
{
return async ctx =>
{
await ctx.Response.WriteAsync("Hello from USE");
await next(ctx);
};
});
app.Use(async (ctx, next) =>
{
await ctx.Response.WriteAsync("Hello from USE");
await next();
});
app.Run(async ctx => { await ctx.Response.WriteAsync(“Hello from Run"); });
public class MyMiddleware
{
private readonly RequestDelegate _next;
public MyMiddleware(RequestDelegate next)
{
_next = next;
}
public async Task Invoke(HttpContext context)
{
await context.Response.WriteAsync("Hello!");
await _next(context);
}
}
Facebook
Personal Blog
LinkedIn
http://LearnWithShahriar.wordpress.com
Thank You

Asp net core in azure

Editor's Notes

  • #7 ASP.NET frameworks - similar, but different
  • #9 The standard library allows us to innovate much more quickly and those innovations are picked up by all the platforms. Tooling innovation affects both app models & standard library