Gets the culture associated with the session.
Namespace:
Dundas.BI.AccountServices
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax public CultureInfo Culture { get; }
Public ReadOnly Property Culture As CultureInfo
Get
public:
property CultureInfo^ Culture {
CultureInfo^ get ();
}
member Culture : CultureInfo with get
Property Value
Type:
CultureInfoRemarks The value of this property is guaranteed to never be .
When an account logs on, a culture is always associated with the resulting Session. The following
procedure outlines how that culture is determined:
-
If the account has a specified culture, that is used.
-
If the account is a Windows account which is a member of one or more Windows Group accounts, and the
distinct list of all specified cultures on those Windows Group accounts results in a single culture,
that culture is used.
-
If the account is a member of one or more groups, and the distinct list of all specified cultures on
those groups results in a single culture, that culture is used.
-
The application's default culture is used.
See Also