We're sorry but this page doesn't work properly without JavaScript enabled. Please enable it to continue.
Feedback

From requests to responses: a journey into the ASP.NET Web API runtime architecture

Formal Metadata

Title
From requests to responses: a journey into the ASP.NET Web API runtime architecture
Title of Series
Number of Parts
150
Author
License
CC Attribution - NonCommercial - ShareAlike 3.0 Unported:
You are free to use, adapt and copy, distribute and transmit the work or content in adapted or unchanged form for any legal and non-commercial purpose as long as the work is attributed to the author in the manner specified by the author or licensor and the work or content is shared also in adapted form only under the conditions of this
Identifiers
Publisher
Release Date
Language

Content Metadata

Subject Area
Genre
Abstract
The ASP.NET Web API is a new framework for creating HTTP based "web apis".While using some traditional ASP.NET MVC concepts, such as controllers and routing, it also introduces new features such as support for multiple media types, content negotiation, TAP (Task-based Asynchronous Pattern) support and multiple hosting options (e.g. ASP.NET pipeline hosting and self-hosting).This session aims to provide a clear understanding of the ASP.NET Web API internal runtime architecture, showing the message path since requests are received to when responses are sent.It addresses the following subjects: hosting; HTTP request and response representation; extending the message path via message handlers and action filters; routing; controller and action selection and invocation; model binding; formatting and content negotiation; dependency injection and service location.This theoretical framework is complemented by a set of concrete examples, showing how to take advantage of this knowledge.