Class MultiplexingRouteHandler
Represents a System.Web.Routing.IRouteHandler that can handle request to both webforms and MVC.
Inheritance
Implements
Inherited Members
Namespace: EPiServer.Web.Routing
Assembly: EPiServer.dll
Version: 7.19.2Syntax
public class MultiplexingRouteHandler : IRouteHandlerConstructors
MultiplexingRouteHandler(IContentLoader, IPermanentLinkMapper, TemplateResolver, LanguageSelectorFactory, IUpdateCurrentLanguage)
Initializes a new instance of the MultiplexingRouteHandler class.
Declaration
public MultiplexingRouteHandler(IContentLoader contentLoader, IPermanentLinkMapper permanentLinkMapper, TemplateResolver templateResolver, LanguageSelectorFactory languageSelectorFactory, IUpdateCurrentLanguage updateCurrentLanguage)Parameters
| Type | Name | Description | 
|---|---|---|
| IContentLoader | contentLoader | The content loader. | 
| IPermanentLinkMapper | permanentLinkMapper | The IPermanentLinkMapper used in GetRouteHandler(RequestContext). | 
| TemplateResolver | templateResolver | The control resolver to use to resolve which template or controller that should handle the request. | 
| LanguageSelectorFactory | languageSelectorFactory | The language selector factory. | 
| IUpdateCurrentLanguage | updateCurrentLanguage | The language selection implementation. | 
Fields
PageRouteHandlerCreator
Specifies the delegate used to create PageRouteHandler instances
Declaration
public Func<string, bool, PageRouteHandler> PageRouteHandlerCreatorField Value
| Type | Description | 
|---|---|
| System.Func<System.String, System.Boolean, System.Web.Routing.PageRouteHandler> | 
Properties
TemplateResolver
Gets the template resolver.
Declaration
protected TemplateResolver TemplateResolver { get; }Property Value
| Type | Description | 
|---|---|
| TemplateResolver | The template resolver. | 
Translator
Gets or sets the translator that is used to translate string resources.
Declaration
public LocalizationService Translator { get; set; }Property Value
| Type | Description | 
|---|---|
| LocalizationService | The translator. | 
Methods
GetHttpHandler(RequestContext)
Gets the http handler from the specified requestContext.
Declaration
public IHttpHandler GetHttpHandler(RequestContext requestContext)Parameters
| Type | Name | Description | 
|---|---|---|
| System.Web.Routing.RequestContext | requestContext | The request context | 
Returns
| Type | Description | 
|---|---|
| System.Web.IHttpHandler | IHttpHandler from System.Web.Mvc.MvcRouteHandler or System.Web.Routing.PageRouteHandler. | 
Remarks
Will get the http handler from the System.Web.Routing.IRouteHandler returned by GetRouteHandler(RequestContext).
GetPageRouteHandler(Object, String, String, Boolean)
Gets the page route handler for a web form.
Declaration
protected virtual PageRouteHandler GetPageRouteHandler(object routedData, string path, string language, bool return404)Parameters
| Type | Name | Description | 
|---|---|---|
| System.Object | routedData | The routed data. | 
| System.String | path | The path. | 
| System.String | language | The language. | 
| System.Boolean | return404 | if set to  | 
Returns
| Type | Description | 
|---|---|
| System.Web.Routing.PageRouteHandler | 
GetRouteHandler(RequestContext)
Returns a route handler for MVC or webforms.
Declaration
public virtual IRouteHandler GetRouteHandler(RequestContext requestContext)Parameters
| Type | Name | Description | 
|---|---|---|
| System.Web.Routing.RequestContext | requestContext | The request context | 
Returns
| Type | Description | 
|---|---|
| System.Web.Routing.IRouteHandler | An instance of System.Web.Mvc.MvcRouteHandler if a controller is found among routed values in  | 
GetRouteHandlerOrRedirect(RequestContext, Object, Boolean)
Gets the route handler for the request or redirects the request in case RedirectIfNeeded(RequestContext, PageData) returns true.
Declaration
protected virtual IRouteHandler GetRouteHandlerOrRedirect(RequestContext requestContext, object routedData, bool throw404IfNotFound)Parameters
| Type | Name | Description | 
|---|---|---|
| System.Web.Routing.RequestContext | requestContext | The request context. | 
| System.Object | routedData | The content. | 
| System.Boolean | throw404IfNotFound | if set to  | 
Returns
| Type | Description | 
|---|---|
| System.Web.Routing.IRouteHandler | 
RedirectIfNeeded(RequestContext, PageData)
Redirects the request if the page is an external shortcut or does not have a trailing slash.
Declaration
protected virtual void RedirectIfNeeded(RequestContext requestContext, PageData page)Parameters
| Type | Name | Description | 
|---|---|---|
| System.Web.Routing.RequestContext | requestContext | The request context. | 
| PageData | page | The page. | 
