| 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.Http.Symbols |
| 4 | { |
| 5 | /// <summary> |
| 6 | /// Must match constants in wixhttpca.cpp |
| 7 | /// </summary> |
| 8 | public enum HandleExisting |
| 9 | { |
| 10 | Replace = 0, |
| 11 | Ignore = 1, |
| 12 | Fail = 2, |
| 13 | } |
| 14 | } |