Свойство ClientCultureInfo
Gets the culture for the current client.
Пространство имен: Microsoft.AnalysisServices.AdomdServer
Сборка: msmgdsrv (в msmgdsrv.dll)
Синтаксис
'Декларация
Public Shared ReadOnly Property ClientCultureInfo As CultureInfo
Get
'Применение
Dim value As CultureInfo
value = Context.ClientCultureInfo
public static CultureInfo ClientCultureInfo { get; }
public:
static property CultureInfo^ ClientCultureInfo {
CultureInfo^ get ();
}
static member ClientCultureInfo : CultureInfo
static function get ClientCultureInfo () : CultureInfo
Значение свойства
Тип System.Globalization. . :: . .CultureInfo
The CultureInfo for the current client.
Примеры
In the following example, ClientCultureInfo is passed into ToString to parse a date in the correct format:
((DateTime)_dblRangeHigh).ToString(Context.ClientCultureInfo);
См. также