GlobalizationSection.Culture Property

Definition

Gets or sets a value specifying the default culture for processing incoming Web requests.

public:
 property System::String ^ Culture { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("culture", DefaultValue="")]
public string Culture { get; set; }
[<System.Configuration.ConfigurationProperty("culture", DefaultValue="")>]
member this.Culture : string with get, set
Public Property Culture As String

Property Value

The default culture for processing incoming Web requests.

Attributes

Examples

The following code example demonstrates how to use the Culture property. This code example is part of a larger example provided for the GlobalizationSection class.

// Display Culture property.
Console.WriteLine("Culture: {0}",
  configSection.Culture);
' Display Culture property.
Console.WriteLine("Culture: {0}", _
 configSection.Culture)

Remarks

The Culture property returns the default culture for processing incoming Web requests.

Applies to

See also