FaultDescriptionTranslations Property |
Gets or sets the description translations for other languages than English.
This is a dictionary of language tags and the corresponding translation in that language.
The key values are either Cultures or Locales as defined in
Culture
names and identifiers
.
Remarks
Max length of key is 10 characters.
Max length of value is 1024 characters which might include multi-line text.
Filling this collection is optional.
The CultureInfo class specifies a unique name for each culture, based on RFC 4646.
The name is a combination of an ISO 639 two-letter lowercase culture code associated with a language and an
ISO 3166 two-letter uppercase subculture code associated with a country or region.
Example
The language needs to be associated with the particular region where it is spoken,
and this is done by using locale (language + location). For example: fr is the code for French language.
fr-FR means French language in France. So, fr specifies only the language whereas fr-FR is the locale
Namespace: CFX.StructuresAssembly: CFX (in CFX.dll) Version: 2.0.0+5bb1f71a933ed371a0f5f2d5e7db34c89b75f3ea
Syntaxpublic Dictionary<string, string> DescriptionTranslations { get; set; }
Public Property DescriptionTranslations As Dictionary(Of String, String)
Get
Set
Property Value
DictionaryString,
String
The description translations.
See Also