File: System\ServiceModel\Configuration\AuthenticationMode.cs
Project: ndp\cdf\src\WCF\ServiceModel\System.ServiceModel.csproj (System.ServiceModel)
//------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//------------------------------------------------------------------------------
 
namespace System.ServiceModel.Configuration
{
    public enum AuthenticationMode
    {
        AnonymousForCertificate,
        AnonymousForSslNegotiated,
        CertificateOverTransport,
        IssuedToken,
        IssuedTokenForCertificate,
        IssuedTokenForSslNegotiated,
        IssuedTokenOverTransport,
        Kerberos,
        KerberosOverTransport,
        MutualCertificate,
        MutualCertificateDuplex,
        MutualSslNegotiated,
        SecureConversation,
        SspiNegotiated,
        UserNameForCertificate,
        UserNameForSslNegotiated,
        UserNameOverTransport,
        SspiNegotiatedOverTransport
    }
 
}