Class RenderingEngineOptions
- Namespace
- Sitecore.AspNetCore.SDK.RenderingEngine.Configuration
- Assembly
- Sitecore.AspNetCore.SDK.RenderingEngine.dll
The options to configure the Sitecore Rendering Engine.
public class RenderingEngineOptions
- Inheritance
-
RenderingEngineOptions
- Inherited Members
- Extension Methods
-
RenderingEngineOptionsExtensions.AddPostRenderingAction(RenderingEngineOptions, Action<HttpContext>)
Properties
DefaultRenderer
Gets or sets the default ComponentRendererDescriptor object for handling component rendering.
public ComponentRendererDescriptor? DefaultRenderer { get; set; }
Property Value
PostRenderingActions
Gets collection of actions to be executed right after RenderingEngine middleware logic.
public ICollection<Action<HttpContext>> PostRenderingActions { get; }
Property Value
RendererRegistry
Gets or sets the list of ComponentRendererDescriptor objects for handling component rendering.
public SortedList<int, ComponentRendererDescriptor> RendererRegistry { get; set; }
Property Value
RequestMappings
Gets or sets the action list to configure the SitecoreLayoutRequest handler for incoming HTTP requests.
public ICollection<Action<HttpRequest, SitecoreLayoutRequest>> RequestMappings { get; set; }