CultureInfo

Represents culture information.

Fields

CultureName
The unique name of the culture.
EnglishNameName
The English name of the culture.
NativeName
The native name of the culture.

Note: Fields which are not available will be omitted.

Examples

JSON body:

{
  "CultureName": "en-ZA",
  "EnglishName": "English (South Africa)",
  "NativeName": "English (South Africa)"
}

XML body:

<?xml version="1.0"?>
<CultureInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" CultureName="en-ZA">
  <EnglishName>English (South Africa)</EnglishName>
  <NativeName>English (South Africa)</NativeName>
</CultureInfo>

CSV body:

CultureName,EnglishName,NativeName
en-ZA,English (South Africa),English (South Africa)