| File: System\Security\Authentication\ExtendedProtection\ChannelBindingKind.cs | Web Access |
| Project: src\src\libraries\System.Net.Primitives\src\System.Net.Primitives.csproj (System.Net.Primitives) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Security.Authentication.ExtendedProtection { // These should match the native SEC_ATTR_*_BINDINGS defines public enum ChannelBindingKind { Unknown = 0, Unique = 0x19, Endpoint = 0x1A } } |