main
cs 22 lines 652 Bytes
Raw
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 }