summaryrefslogtreecommitdiff
path: root/src/mscorlib/shared/System/Text/Normalization.cs
blob: dc8bc2af71ddd4871b0dd1df8293263679b79259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 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.Text
{
    // This is the enumeration for Normalization Forms
    public enum NormalizationForm
    {
        FormC = 1,
        FormD = 2,
        FormKC = 5,
        FormKD = 6
    }

    internal enum ExtendedNormalizationForms
    {
        FormC = 1,
        FormD = 2,
        FormKC = 5,
        FormKD = 6,
        FormIdna = 0xd,
        FormCDisallowUnassigned = 0x101,
        FormDDisallowUnassigned = 0x102,
        FormKCDisallowUnassigned = 0x105,
        FormKDDisallowUnassigned = 0x106,
        FormIdnaDisallowUnassigned = 0x10d
    }
}