Class DisplayChannel
Base class for display channel implementations. A display channel can be used to control which render templates that should be used for a request.
Inheritance
Namespace: EPiServer.Web
Assembly: EPiServer.Cms.AspNetCore.Templating.dll
Version: 12.0.3Syntax
public abstract class DisplayChannel : Object
Constructors
DisplayChannel()
Declaration
protected DisplayChannel()
Properties
ChannelName
Gets the name of the channel.
Declaration
public abstract string ChannelName { get; }
Property Value
Type | Description |
---|---|
System. |
The name of the channel. |
Remarks
When a Display
DisplayName
Gets the name of this DisplayChannel localized to the current language.
If no localized name exist Channel
Declaration
public virtual string DisplayName { get; }
Property Value
Type | Description |
---|---|
System. |
Remarks
To localize the DisplayChannel name it should be located at the language path
"/displaychannels/displaychannel[@name='ChannelName']/name", where ChannelName matches
the Channel
LocalizationService
Gets or sets the localization service to use.
Declaration
public virtual LocalizationService LocalizationService { get; set; }
Property Value
Type | Description |
---|---|
Localization |
The localization service. |
Remarks
By default it will use Current.
NameLocalizationFormat
Gets the name localization format.
Declaration
protected virtual string NameLocalizationFormat { get; }
Property Value
Type | Description |
---|---|
System. |
Remarks
The format that is used when localizing the Display
ResolutionId
Gets the resolution.
Declaration
public virtual string ResolutionId { get; }
Property Value
Type | Description |
---|---|
System. |
Remarks
Default value is null meaning channel has no preferred resolution.
Methods
IsActive(HttpContext)
Determines whether the specified channel is active given the specified context.
Declaration
public abstract bool IsActive(HttpContext context)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
context | The context. |
Returns
Type | Description |
---|---|
System. |
|