aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/AccessModifier.cs
blob: 64f29f2683aa3de8a8ddc877e231a5e40378b7ba (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
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.

namespace WixToolset.Data
{
    public enum AccessModifier
    {
        /// <summary>
        /// Indicates the identifier is publicly visible to all other sections.
        /// </summary>
        Public,

        /// <summary>
        /// Indicates the identifier is visible only to sections in the same library.
        /// </summary>
        Internal,

        /// <summary>
        /// Indicates the identifier is visible only to sections in the same source file.
        /// </summary>
        Protected,

        /// <summary>
        /// Indicates the identifiers is visible only to the section where it is defined.
        /// </summary>
        Private,
    }
}