HttpListener.ExtendedProtectionPolicy Property

Definition

Gets or sets the ExtendedProtectionPolicy to use for extended protection for a session.

public:
 property System::Security::Authentication::ExtendedProtection::ExtendedProtectionPolicy ^ ExtendedProtectionPolicy { System::Security::Authentication::ExtendedProtection::ExtendedProtectionPolicy ^ get(); void set(System::Security::Authentication::ExtendedProtection::ExtendedProtectionPolicy ^ value); };
public System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy ExtendedProtectionPolicy { get; [System.Runtime.Versioning.UnsupportedOSPlatform("browser")] set; }
public System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy ExtendedProtectionPolicy { get; set; }
[<set: System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
member this.ExtendedProtectionPolicy : System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy with get, set
member this.ExtendedProtectionPolicy : System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy with get, set
Public Property ExtendedProtectionPolicy As ExtendedProtectionPolicy

Property Value

A ExtendedProtectionPolicy that specifies the policy to use for extended protection.

Attributes

Exceptions

An attempt was made to set the ExtendedProtectionPolicy property, but the CustomChannelBinding property was not null.

An attempt was made to set the ExtendedProtectionPolicy property to null.

An attempt was made to set the ExtendedProtectionPolicy property after the Start() method was already called.

This object is closed.

The PolicyEnforcement property was set to Always on a platform that does not support extended protection.

Remarks

The ExtendedProtectionPolicy property is used with integrated Windows authentication to provide extended protection. The ExtendedProtectionPolicy property allows the configuration of the extended protection policy for the whole HttpListener session. The ExtendedProtectionSelectorDelegate property allows the configuration of the extended protection policy for each individual request.

The CustomChannelBinding property must be null. The HttpListener instance gets the Channel Binding Token (CBT) directly from its own TLS session if there is one.

Applies to

See also