File: System\Net\Security\ProtectionLevel.cs
Web Access
Project: src\src\libraries\System.Net.Security\src\System.Net.Security.csproj (System.Net.Security)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Net.Security
{
    public enum ProtectionLevel
    {
        None = 0,
        // Data integrity only
        Sign = 1,
        // Both data confidentiality and integrity
        EncryptAndSign = 2
    }
}