London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Interface ITransferPageData

Represents the transfer format of a PageData instance.

Namespace: EPiServer.Core.Transfer
Assembly: EPiServer.dll
Version: 12.0.3
Syntax
public interface ITransferPageData

Properties

DynamicProperties

Gets or sets the dynamic properties for the page.

Declaration
RawProperty[] DynamicProperties { get; set; }
Property Value
Type Description
RawProperty[]

The dynamic properties.

LanguageSettings

Gets or sets the language settings for the page.

Declaration
List<PageLanguageSetting> LanguageSettings { get; set; }
Property Value
Type Description
System.Collections.Generic.List<PageLanguageSetting>

The language settings.

RawLanguageData

Gets the list of RawPage instances for none master languages for the page.

Declaration
List<RawPage> RawLanguageData { get; }
Property Value
Type Description
System.Collections.Generic.List<RawPage>

The raw language data.

RawPageData

Gets or sets the RawPage for the master language version.

Declaration
RawPage RawPageData { get; set; }
Property Value
Type Description
RawPage

The raw page data.

Extension Methods