// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information. namespace System.Web.Http.SelfHost.Channels { /// /// Defines the modes of security that can be used to configure a service endpoint that uses the /// . /// public enum HttpBindingSecurityMode { /// /// Indicates no security is used with HTTP requests. /// None, /// /// Indicates that transport-level security is used with HTTP requests. /// Transport, /// /// Indicates that only HTTP-based client authentication is provided. /// TransportCredentialOnly, } }