SessionCulture Property

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.1.0.1000)
Syntax
public CultureInfo Culture { get; }

Property Value

Type: CultureInfo
Remarks

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:

  1. If the account has a specified culture, that is used.
  2. 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.
  3. 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.
  4. The application's default culture is used.
See Also