Namespace: Microsoft.IdentityModel.Web.Configuration
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

Visual Basic
Dim instance As CookieHandlerElement
Dim value As CookieHandlerMode

value = instance.Mode

instance.Mode = value

Syntax

Visual Basic
<ConfigurationPropertyAttribute("mode", IsRequired:=False, DefaultValue:=CookieHandlerMode.Default)> _
Public Property Mode As CookieHandlerMode
C#
[ConfigurationPropertyAttribute("mode", IsRequired=false, DefaultValue=CookieHandlerMode.Default)] 
public CookieHandlerMode Mode { get; set; }
C++
[ConfigurationPropertyAttribute(L"mode", IsRequired=false, DefaultValue=CookieHandlerMode::Default)] 
public:
property CookieHandlerMode Mode {
		CookieHandlerMode get ();
		void set (CookieHandlerMode value);
}
J#
/** @property */
public CookieHandlerMode get_Mode ()

/** @property */
public void set_Mode (CookieHandlerMode value)
JScript
public function get Mode () : CookieHandlerMode

public function set Mode (value : CookieHandlerMode)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2008, Windows Vista, Not tested on Windows XP

See Also