Class CountryInfo
Class CountryInfo
Inheritance
System.Object
CountryInfo
Namespace: MediaBrowser.Model.Globalization
Assembly: MediaBrowser.Model.dll
Syntax
public class CountryInfo
Constructors
CountryInfo(String, String, String, String, String)
Initializes a new instance of the CountryInfo class.
Declaration
public CountryInfo(string name, string englishName, string displayName, string twoLetterIsoRegionName, string threeLetterIsoRegionName)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name. |
System.String | englishName | Name of the english. |
System.String | displayName | The display name. |
System.String | twoLetterIsoRegionName | Name of the two letter iso region. |
System.String | threeLetterIsoRegionName | Name of the three letter iso region. |
Properties
DisplayName
Gets or sets the display name.
Declaration
public string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The display name. |
EnglishName
Gets or sets the English name.
Declaration
public string EnglishName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The English name. |
Name
Gets or sets the name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name. |
ThreeLetterISORegionName
Gets or sets the name of the three letter ISO region.
Declaration
public string ThreeLetterISORegionName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the three letter ISO region. |
TwoLetterISORegionName
Gets or sets the name of the two letter ISO region.
Declaration
public string TwoLetterISORegionName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the two letter ISO region. |