31 references to ChannelBindingKind
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChannelBindingUtility.cs (1)
45token = context.GetChannelBinding(ChannelBindingKind.Endpoint);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IStreamUpgradeChannelBindingProvider.cs (2)
15ChannelBinding GetChannelBinding(StreamUpgradeInitiator upgradeInitiator, ChannelBindingKind kind); 16ChannelBinding GetChannelBinding(StreamUpgradeAcceptor upgradeAcceptor, ChannelBindingKind kind);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SslStreamSecurityUpgradeProvider.cs (4)
159ChannelBinding IStreamUpgradeChannelBindingProvider.GetChannelBinding(StreamUpgradeInitiator upgradeInitiator, ChannelBindingKind kind) 173if (kind != ChannelBindingKind.Endpoint) 181ChannelBinding IStreamUpgradeChannelBindingProvider.GetChannelBinding(StreamUpgradeAcceptor upgradeAcceptor, ChannelBindingKind kind) 195if (kind != ChannelBindingKind.Endpoint)
netstandard (1)
netstandard.cs (1)
1826[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Authentication.ExtendedProtection.ChannelBindingKind))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
841[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Authentication.ExtendedProtection.ChannelBindingKind))]
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\AuthenticationHelper.NtAuth.cs (1)
177Binding = connection.TransportContext?.GetChannelBinding(ChannelBindingKind.Endpoint),
System.Net.HttpListener (2)
System\Net\Managed\HttpListenerRequest.Managed.cs (2)
49public override ChannelBinding? GetChannelBinding(ChannelBindingKind kind) 51if (kind != ChannelBindingKind.Endpoint)
System.Net.Primitives (1)
System\Net\TransportContext.cs (1)
10public abstract ChannelBinding? GetChannelBinding(ChannelBindingKind kind);
System.Net.Security (12)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.OpenSsl.cs (3)
96internal static SafeChannelBindingHandle? QueryChannelBinding(SafeSslHandle context, ChannelBindingKind bindingType) 99bindingType != ChannelBindingKind.Endpoint, 105case ChannelBindingKind.Unique:
System\Net\Security\Pal.Managed\EndpointChannelBindingToken.cs (1)
19SafeChannelBindingHandle bindingHandle = new SafeChannelBindingHandle(ChannelBindingKind.Endpoint);
System\Net\Security\Pal.Managed\SafeChannelBindingHandle.cs (4)
31internal unsafe SafeChannelBindingHandle(ChannelBindingKind kind) 33Debug.Assert(kind == ChannelBindingKind.Endpoint || kind == ChannelBindingKind.Unique); 34ReadOnlySpan<byte> cbtPrefix = kind == ChannelBindingKind.Endpoint ?
System\Net\Security\SslStream.Protocol.cs (1)
162internal ChannelBinding? GetChannelBinding(ChannelBindingKind kind)
System\Net\Security\SslStreamPal.Unix.cs (2)
117public static ChannelBinding? QueryContextChannelBinding(SafeDeleteSslContext securityContext, ChannelBindingKind attribute) 121if (attribute == ChannelBindingKind.Endpoint)
System\Net\SslStreamContext.cs (1)
20public override ChannelBinding? GetChannelBinding(ChannelBindingKind kind) =>
System.ServiceModel.NetFramingBase (6)
System\ServiceModel\Channels\ChannelBindingUtility.cs (1)
26token = context.GetChannelBinding(ChannelBindingKind.Endpoint);
System\ServiceModel\Channels\FramingChannels.cs (1)
243SetChannelBinding(channelBindingProvider.GetChannelBinding(upgradeInitiator, ChannelBindingKind.Endpoint));
System\ServiceModel\Channels\IStreamUpgradeChannelBindingProvider.cs (1)
11ChannelBinding GetChannelBinding(StreamUpgradeInitiator upgradeInitiator, ChannelBindingKind kind);
System\ServiceModel\Channels\SslStreamSecurityUpgradeProvider.cs (2)
105ChannelBinding IStreamUpgradeChannelBindingProvider.GetChannelBinding(StreamUpgradeInitiator upgradeInitiator, ChannelBindingKind kind) 119if (kind != ChannelBindingKind.Endpoint)
System\ServiceModel\Channels\StreamedFramingRequestChannel.cs (1)
89_channelBindingToken = channelBindingProvider.GetChannelBinding(upgradeInitiator, ChannelBindingKind.Endpoint);