FormsAuthenticationConfiguration.Timeout Property

Definition

Gets or sets the authentication time-out.

C#
[System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanMinutesConverter))]
[System.Configuration.ConfigurationProperty("timeout", DefaultValue="00:30:00")]
[System.Configuration.TimeSpanValidator(MaxValueString="10675199.02:48:05.4775807", MinValueString="00:01:00")]
public TimeSpan Timeout { get; set; }

Property Value

The amount of time in minutes after which the authentication expires. The default value is 30 minutes.

Attributes

Examples

The following code example shows how to access the Timeout property. Refer to the code example in the FormsAuthenticationConfiguration class topic to learn how to get the section.

C#
// Get the current Timeout.
System.TimeSpan currentTimeout =
    formsAuthentication.Timeout;

// Set the Timeout.
formsAuthentication.Timeout =
    System.TimeSpan.FromMinutes(10);

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also