diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-08-11 00:39:04 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-08-15 01:51:22 -0700 |
| commit | 4ebc33174c02e1c9f5693b5ef38ecfe3292c687f (patch) | |
| tree | 5800ee5feb0cb30d71c706d36ce2ef857e9b87c3 /src/WixToolset.Data/AccessModifier.cs | |
| parent | b558e6bb06aa27f57670736bfd3e22cc34ab0669 (diff) | |
| download | wix-4ebc33174c02e1c9f5693b5ef38ecfe3292c687f.tar.gz wix-4ebc33174c02e1c9f5693b5ef38ecfe3292c687f.tar.bz2 wix-4ebc33174c02e1c9f5693b5ef38ecfe3292c687f.zip | |
Move to .NET Core 2.0
Diffstat (limited to 'src/WixToolset.Data/AccessModifier.cs')
| -rw-r--r-- | src/WixToolset.Data/AccessModifier.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/WixToolset.Data/AccessModifier.cs b/src/WixToolset.Data/AccessModifier.cs new file mode 100644 index 00000000..64f29f26 --- /dev/null +++ b/src/WixToolset.Data/AccessModifier.cs | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | // 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. | ||
| 2 | |||
| 3 | namespace WixToolset.Data | ||
| 4 | { | ||
| 5 | public enum AccessModifier | ||
| 6 | { | ||
| 7 | /// <summary> | ||
| 8 | /// Indicates the identifier is publicly visible to all other sections. | ||
| 9 | /// </summary> | ||
| 10 | Public, | ||
| 11 | |||
| 12 | /// <summary> | ||
| 13 | /// Indicates the identifier is visible only to sections in the same library. | ||
| 14 | /// </summary> | ||
| 15 | Internal, | ||
| 16 | |||
| 17 | /// <summary> | ||
| 18 | /// Indicates the identifier is visible only to sections in the same source file. | ||
| 19 | /// </summary> | ||
| 20 | Protected, | ||
| 21 | |||
| 22 | /// <summary> | ||
| 23 | /// Indicates the identifiers is visible only to the section where it is defined. | ||
| 24 | /// </summary> | ||
| 25 | Private, | ||
| 26 | } | ||
| 27 | } | ||
