Culture members
The Culture class represents an e-mail culture.
The Culture type exposes the following members.
Properties
Name | Description | |
---|---|---|
Default | The Default property gets a Culture object that represents the default culture for the current process. | |
Description | The Description property gets the English language description, if it is available, of the culture represented by this Culture object. | |
Invariant | The Invariant property gets the Culture object that represents the invariant culture. | |
LCID | The LCID property gets the locale ID of the culture represented by this Culture object. | |
MimeCharset | The MimeCharset property gets a read-only Charset object that represents the preferred MIME character set for the culture represented by this Culture object. | |
Name | The Name property gets the RFC1766 name of the culture represented by this Culture object. | |
NativeDescription | The NativeDescription property gets the description, if available, in the native language of the culture that this Culture object represents. | |
ParentCulture | The ParentCulture property gets the parent culture for the culture that this Culture object represents. | |
WebCharset | The WebCharset property gets the preferred Web character set for the culture that this Culture object represents. | |
WindowsCharset | The WindowsCharset property gets the Windows character set for the culture that this Culture object represents. |
Top
Methods
Name | Description | |
---|---|---|
GetCulture(Int32) | The GetCulture method returns a read-only Culture object that represents the culture that corresponds to the locale ID parameter, lcid. | |
GetCulture(String) | The GetCulture method gets a read-only Culture object that represents the culture specified by the name parameter. | |
GetCultureInfo | The GetCultureInfo method returns the CultureInfo object, if available, for the culture that this Culture object represents. | |
TryGetCulture(Int32, Culture) | TryGetCulture attempts to put a Culture object that corresponds to the lcid parameter into the culture out parameter. TryGetCulture does not throw an exception if it fails. | |
TryGetCulture(String, Culture) | TryGetCulture attempts to put a Culture object that corresponds to the name parameter into the culture out parameter. TryGetCulture does not throw an exception if it fails. |
Top