HttpSessionStateContainer.LCID Property

Definition

Gets or sets the locale identifier (LCID) of the current session.

public:
 property int LCID { int get(); void set(int value); };
public int LCID { get; set; }
member this.LCID : int with get, set
Public Property LCID As Integer

Property Value

A CultureInfo instance that specifies the culture of the current session.

Implements

Remarks

The LCID property is provided for compatibility with earlier versions of ASP only. If you do not need to maintain backward compatibility with ASP pages, use the LCID property instead.

ASP.NET does not store the locale identifier in session state. The LCID property accesses the LCID property to get and set the identifier.

Applies to

See also