| 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.Core.Native |
| 4 | { |
| 5 | using System.Collections.Generic; |
| 6 | |
| 7 | /// <summary> |
| 8 | /// Message from ICE |
| 9 | /// </summary> |
| 10 | public class ValidationMessage |
| 11 | { |
| 12 | /// <summary> |
| 13 | /// Name of the ICE providing the message. |
| 14 | /// </summary> |
| 15 | public string IceName { get; set; } |
| 16 | |
| 17 | /// <summary> |
| 18 | /// Validation type. |
| 19 | /// </summary> |
| 20 | public ValidationMessageType Type { get; set; } |
| 21 | |
| 22 | /// <summary> |
| 23 | /// Message text. |
| 24 | /// </summary> |
| 25 | public string Description { get; set; } |
| 26 | |
| 27 | /// <summary> |
| 28 | /// Optional help URL for the message. |
| 29 | /// </summary> |
| 30 | public string HelpUrl { get; set; } |
| 31 | |
| 32 | /// <summary> |
| 33 | /// Optional table causing the message. |
| 34 | /// </summary> |
| 35 | public string Table { get; set; } |
| 36 | |
| 37 | /// <summary> |
| 38 | /// Optional column causing the message. |
| 39 | /// </summary> |
| 40 | public string Column { get; set; } |
| 41 | |
| 42 | /// <summary> |
| 43 | /// Optional primary keys causing the message. |
| 44 | /// </summary> |
| 45 | public IEnumerable<string> PrimaryKeys { get; set; } |
| 46 | } |
| 47 | } |