Welcome to the navigation

Sunt excepteur incididunt qui est irure nisi id amet, pariatur, in ullamco laborum, aliquip deserunt lorem veniam, ipsum velit dolore aute laboris adipisicing mollit officia. Sit est irure mollit deserunt aute anim ex proident, velit in fugiat dolore in occaecat culpa et minim ut nulla cupidatat nostrud non aliquip laborum

Yeah, this will be replaced... But please enjoy the search!

Get the SiteDefinition for a specific page in Episerver using SiteDefinitionResolver

If you have a multi site/tenant Episerver setup and need an effective way to figure out the current SiteDefinition the SiteDefinitionResolver is the way to go. This may be very useful when you need to figure out the current StartPage, SiteUrl and similiar properties in a multi site environment.

Before Epi 10

var siteDefinitionResolover = ServiceLocator.Current.GetInstance<SiteDefinitionResolver>();
SiteDefinition siteDefinition = siteDefinitionResolover.GetDefinitionForContent(
    contentLink: contentLink, 
    fallbackToWildcardMapped: true,
    fallbackToEmpty: true);

Epi 10 and later

var siteDefinitionResolover = ServiceLocator.Current.GetInstance<ISiteDefinitionResolver>();
SiteDefinition siteDefinition = siteDefinitionResolover.GetByContent(
    contentLink: this.ContentLink,
    fallbackToWildcard: true,
    fallbackToEmpty: true);

 

This will enable you to access the properties through the siteDefinition variable

// get the startpage of the stated contentLink
var startPage = siteDefinition.StartPage;
// get the site url for the stated contentLink
var siteUrl = siteDefinition.SiteUrl;

Read more on SiteDefinition and SiteDefinitionResolver