AuthenticationSection.Mode Property

Gets or sets the authentication modality.

Namespace: System.Web.Configuration
Assembly: System.Web (in system.web.dll)

'Declaration
Public Property Mode As AuthenticationMode
'Usage
Dim instance As AuthenticationSection
Dim value As AuthenticationMode

value = instance.Mode

instance.Mode = value
/** @property */
public AuthenticationMode get_Mode ()

/** @property */
public void set_Mode (AuthenticationMode value)

public function get Mode () : AuthenticationMode

public function set Mode (value : AuthenticationMode)

Not applicable.

Property Value

One of the AuthenticationMode values.

The following code example shows how to use the Mode property.

' Get the current Mode property.
  Dim currentMode As AuthenticationMode = _
  authenticationSection.Mode

' Set the Mode property to Windows.
  authenticationSection.Mode = _
  AuthenticationMode.Windows


Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: