diff options
Diffstat (limited to 'src/WixToolset.Data/EmptyRule.cs')
-rw-r--r-- | src/WixToolset.Data/EmptyRule.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/WixToolset.Data/EmptyRule.cs b/src/WixToolset.Data/EmptyRule.cs new file mode 100644 index 00000000..0170e457 --- /dev/null +++ b/src/WixToolset.Data/EmptyRule.cs | |||
@@ -0,0 +1,22 @@ | |||
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 EmptyRule | ||
6 | { | ||
7 | /// <summary> | ||
8 | /// The trimmed value cannot be empty. | ||
9 | /// </summary> | ||
10 | MustHaveNonWhitespaceCharacters, | ||
11 | |||
12 | /// <summary> | ||
13 | /// The trimmed value can be empty, but the value itself cannot be empty. | ||
14 | /// </summary> | ||
15 | CanBeWhitespaceOnly, | ||
16 | |||
17 | /// <summary> | ||
18 | /// The value can be empty. | ||
19 | /// </summary> | ||
20 | CanBeEmpty | ||
21 | } | ||
22 | } | ||