Table of Contents

Class TranslationEntryCollection

Namespace
Dynamicweb.Rendering.Translation
Assembly
Dynamicweb.Core.dll

Represents translations collection.

[Serializable]
public class TranslationEntryCollection : Dictionary<string, TranslationEntry>, IDictionary<string, TranslationEntry>, ICollection<KeyValuePair<string, TranslationEntry>>, IReadOnlyDictionary<string, TranslationEntry>, IReadOnlyCollection<KeyValuePair<string, TranslationEntry>>, IEnumerable<KeyValuePair<string, TranslationEntry>>, IDictionary, ICollection, IEnumerable, IDeserializationCallback, ISerializable
Inheritance
TranslationEntryCollection
Implements
Inherited Members
Extension Methods

Constructors

TranslationEntryCollection()

public TranslationEntryCollection()

Methods

Add(string, string)

Adds new item to the collection.

public void Add(string cultureName, string value)

Parameters

cultureName string

The name of the culture for new item.

value string

The translation value for the new item.

To top