Skip to content

Latest commit

 

History

History
111 lines (106 loc) · 3.34 KB

File metadata and controls

111 lines (106 loc) · 3.34 KB

Routing

Get an overview of how the Umbraco pipeline is structured. See what happens from user request to content delivery.

User Request

A front-end request is made...

Request Pipeline

Matching a URL to a content item & determining the rendering engine (MVC or Webforms)
Match an MVC Controller and Action to handle the request
The MVC Action and View are executed. During this execution you can query for published data to be displayed/rendered.
IPublishedContent is the underlying model used in all Umbraco views
The dynamic version of IPublishedContent that can be used in all Umbraco views
Use UmbracoHelper to query published media and content
This section covers the MembershipHelper

Content is delivered