HttpListener.ExtendedProtectionSelectorDelegate Property

Definition

Gets or sets the delegate called to determine the ExtendedProtectionPolicy to use for each request.

public:
 property System::Net::HttpListener::ExtendedProtectionSelector ^ ExtendedProtectionSelectorDelegate { System::Net::HttpListener::ExtendedProtectionSelector ^ get(); void set(System::Net::HttpListener::ExtendedProtectionSelector ^ value); };
public System.Net.HttpListener.ExtendedProtectionSelector? ExtendedProtectionSelectorDelegate { get; set; }
public System.Net.HttpListener.ExtendedProtectionSelector ExtendedProtectionSelectorDelegate { get; set; }
member this.ExtendedProtectionSelectorDelegate : System.Net.HttpListener.ExtendedProtectionSelector with get, set
Public Property ExtendedProtectionSelectorDelegate As HttpListener.ExtendedProtectionSelector

Property Value

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

Exceptions

An attempt was made to set the ExtendedProtectionSelectorDelegate property, but the CustomChannelBinding property must be null.

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

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

This object is closed.

An attempt was made to set the ExtendedProtectionSelectorDelegate property 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 per 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.

For each request, the delegate can choose the settings that the HttpListener instance will use to provide extended protection.

If a delegate returns null for this property, this represents a ExtendedProtectionPolicy which the PolicyEnforcement property set to Never.

Applies to

See also