diff options
Diffstat (limited to 'src/test/burn/WixToolsetTest.BurnE2E/IWebServer.cs')
-rw-r--r-- | src/test/burn/WixToolsetTest.BurnE2E/IWebServer.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/burn/WixToolsetTest.BurnE2E/IWebServer.cs b/src/test/burn/WixToolsetTest.BurnE2E/IWebServer.cs new file mode 100644 index 00000000..3bb8a23e --- /dev/null +++ b/src/test/burn/WixToolsetTest.BurnE2E/IWebServer.cs | |||
@@ -0,0 +1,20 @@ | |||
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 WixToolsetTest.BurnE2E | ||
4 | { | ||
5 | using System; | ||
6 | using System.Collections.Generic; | ||
7 | |||
8 | public interface IWebServer : IDisposable | ||
9 | { | ||
10 | /// <summary> | ||
11 | /// Registers a collection of relative URLs (the key) with its absolute path to the file (the value). | ||
12 | /// </summary> | ||
13 | void AddFiles(Dictionary<string, string> physicalPathsByRelativeUrl); | ||
14 | |||
15 | /// <summary> | ||
16 | /// Starts the web server on a new thread. | ||
17 | /// </summary> | ||
18 | void Start(); | ||
19 | } | ||
20 | } \ No newline at end of file | ||