View Source
Interface ICultureDictionary
Represents a dictionary based on a specific culture
Assembly: Umbraco.Core.dll
Syntax
public interface ICultureDictionary
Properties
View Source
Culture
Returns the current culture
Declaration
CultureInfo Culture { get; }
Property Value
Type |
Description |
System.Globalization.CultureInfo |
|
View Source
Item[String]
Returns the dictionary value based on the key supplied
Declaration
string this[string key] { get; }
Parameters
Type |
Name |
Description |
System.String |
key |
|
Property Value
Type |
Description |
System.String |
|
Methods
View Source
GetChildren(String)
Returns the child dictionary entries for a given key
Declaration
IDictionary<string, string> GetChildren(string key)
Parameters
Type |
Name |
Description |
System.String |
key |
|
Returns
Type |
Description |
IDictionary<System.String, System.String> |
|