ChannelBinding Constructors

Definition

Overloads

ChannelBinding()

Initializes a new instance of the ChannelBinding class.

ChannelBinding(Boolean)

Initializes a new instance of the ChannelBinding class.

ChannelBinding()

Source:
ChannelBinding.cs
Source:
ChannelBinding.cs
Source:
ChannelBinding.cs

Initializes a new instance of the ChannelBinding class.

protected:
 ChannelBinding();
protected ChannelBinding ();
Protected Sub New ()

Remarks

The channel binding token is used to provide extended protection for integrated windows authentication.

Applies to

ChannelBinding(Boolean)

Source:
ChannelBinding.cs
Source:
ChannelBinding.cs
Source:
ChannelBinding.cs

Initializes a new instance of the ChannelBinding class.

protected:
 ChannelBinding(bool ownsHandle);
protected ChannelBinding (bool ownsHandle);
new System.Security.Authentication.ExtendedProtection.ChannelBinding : bool -> System.Security.Authentication.ExtendedProtection.ChannelBinding
Protected Sub New (ownsHandle As Boolean)

Parameters

ownsHandle
Boolean

A Boolean value that indicates if the application owns the safe handle to a native memory region containing the byte data that would be passed to native calls that provide extended protection for integrated windows authentication.

Remarks

The ChannelBinding constructor is designed to deal with how the channel binding is acquired to compensate for allocation and deallocation semantics in the native calls that provide extended protection for integrated windows authentication.

Applies to