aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Data/IBindResult.cs
blob: 3738ef17d767e20eda0d45dc28b06daa8d766f9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 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.

namespace WixToolset.Extensibility.Data
{
    using System;
    using System.Collections.Generic;
    using WixToolset.Data;

    /// <summary>
    /// Result of bind operation.
    /// </summary>
    public interface IBindResult : IDisposable
    {
        /// <summary>
        /// Collection of file transfers to complete.
        /// </summary>
        IReadOnlyCollection<IFileTransfer> FileTransfers { get; set; }

        /// <summary>
        /// Collection of files tracked during binding.
        /// </summary>
        IReadOnlyCollection<ITrackedFile> TrackedFiles { get; set; }

        /// <summary>
        /// Output of binding.
        /// </summary>
        WixOutput Wixout { get; set; }
    }
}