Table of Contents

Class Key

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

Represents translation key.

public class Key
Inheritance
Key
Inherited Members

Constructors

Key()

Creates new instance of the class.

public Key()

Key(string)

Creates new instance of the class.

public Key(string name)

Parameters

name string

The key name.

Key(string, KeyScope)

Creates new instance of the class.

public Key(string name, KeyScope scope)

Parameters

name string

The key name.

scope KeyScope

The key scope.

Properties

DefaultValue

Gets or sets the key default value.

public string DefaultValue { get; set; }

Property Value

string

Name

Gets or sets the name of the key.

public string Name { get; set; }

Property Value

string

Scope

Gets or sets the key scope.

public KeyScope Scope { get; set; }

Property Value

KeyScope

TagDefinitions

Gets or sets the template tag definitions for current key.

public List<string> TagDefinitions { get; set; }

Property Value

List<string>

Translations

Gets or sets the key translations.

public TranslationEntryCollection Translations { get; set; }

Property Value

TranslationEntryCollection
To top