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);