main
cs 29 lines 908 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.Extensibility.Data
4 {
5 using System;
6 using System.Collections.Generic;
7 using WixToolset.Data;
8
9 /// <summary>
10 /// Result of bind operation.
11 /// </summary>
12 public interface IBindResult : IDisposable
13 {
14 /// <summary>
15 /// Collection of file transfers to complete.
16 /// </summary>
17 IReadOnlyCollection<IFileTransfer> FileTransfers { get; set; }
18
19 /// <summary>
20 /// Collection of files tracked during binding.
21 /// </summary>
22 IReadOnlyCollection<ITrackedFile> TrackedFiles { get; set; }
23
24 /// <summary>
25 /// Output of binding.
26 /// </summary>
27 WixOutput Wixout { get; set; }
28 }
29 }