HttpListenerRequest.TransportContext Property

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets the TransportContext for the client request.

C#
public System.Net.TransportContext TransportContext { get; }

Property Value

A TransportContext object for the client request.

Remarks

The TransportContext property can be used to retrieve the channel binding token (CBT) for an HttpListenerRequest which was sent using HTTPS.

An application could use the TransportContext property to perform custom authentication using calls to the native Win32 AcceptSecurityContext function.

If an application attempts to retrieve the channel binding token (CBT) from this TransportContext property using the GetChannelBinding method and the ChannelBindingKind is not Endpoint, then the HttpListenerRequest will throw NotSupportedException. The HttpListenerRequest overrides the GetChannelBinding method with an internal implementation.

Applies to

Product Versions
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.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
.NET Standard 2.0, 2.1

See also