main
cs 19 lines 656 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.Core
4 {
5 using WixToolset.Extensibility.Data;
6
7 /// <summary>
8 /// Resolves localization and bind variables.
9 /// </summary>
10 public interface IResolver
11 {
12 /// <summary>
13 /// Resolve localization and bind variables.
14 /// </summary>
15 /// <param name="context">Resolve context.</param>
16 /// <returns>Resolve result.</returns>
17 IResolveResult Resolve(IResolveContext context);
18 }
19 }