summaryrefslogtreecommitdiff
path: root/src/mscorlib/shared/System/Runtime/ConstrainedExecution/Cer.cs
blob: 77ab3ea770e73c365504847500c537e4eabff96c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace System.Runtime.ConstrainedExecution
{
    public enum Cer : int
    {
        None = 0,
        MayFail = 1,  // Might fail, but the method will say it failed
        Success = 2,
    }
}