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 ILocalizable

Defines the signature for a component that has a ContentData in multiple languages.

Inherited Members
Namespace: EPiServer.Core
Assembly: EPiServer.dll
Version: 11.20.7
Syntax
public interface ILocalizable : ILocale

Properties

ExistingLanguages

Gets or sets the existing languages for the ContentData

Declaration
IEnumerable<CultureInfo> ExistingLanguages { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<System.Globalization.CultureInfo>

MasterLanguage

Gets or sets the master language for this ContentData instance.

Declaration
CultureInfo MasterLanguage { get; set; }
Property Value
Type Description
System.Globalization.CultureInfo

The master language.

Extension Methods