Interface IMapRequest<T>
Version: 21.x
Contract for mapping SitecoreLayoutRequest entries to an object of the given type.
Namespace: Sitecore.LayoutService.Client
Assembly: Sitecore.LayoutService.Client.Abstractions.dll
Syntax
RequestResponse
public interface IMapRequest<T>
where T : classType Parameters
| Name | Description |
|---|---|
| T |
The type the request is mapped to. |
Properties
RequestMap
Gets or sets the list of mappings from a SitecoreLayoutRequest to T.
Declaration
RequestResponse
List<Action<SitecoreLayoutRequest, T>> RequestMap { get; set; }Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<System.Action<SitecoreLayoutRequest, T>> |