aboutsummaryrefslogtreecommitdiff
path: root/src/api/wix/WixToolset.Extensibility/Services/IVariableResolution.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/wix/WixToolset.Extensibility/Services/IVariableResolution.cs')
-rw-r--r--src/api/wix/WixToolset.Extensibility/Services/IVariableResolution.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/api/wix/WixToolset.Extensibility/Services/IVariableResolution.cs b/src/api/wix/WixToolset.Extensibility/Services/IVariableResolution.cs
new file mode 100644
index 00000000..adcec47f
--- /dev/null
+++ b/src/api/wix/WixToolset.Extensibility/Services/IVariableResolution.cs
@@ -0,0 +1,30 @@
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
3namespace WixToolset.Extensibility.Services
4{
5 /// <summary>
6 /// Result when resolving a variable.
7 /// </summary>
8 public interface IVariableResolution
9 {
10 /// <summary>
11 /// Indicates if the value contains variables that cannot be resolved yet.
12 /// </summary>
13 bool DelayedResolve { get; set; }
14
15 /// <summary>
16 /// Indicates whether a bind variables default value was used in the resolution.
17 /// </summary>
18 bool IsDefault { get; set; }
19
20 /// <summary>
21 /// Indicates whether the resolution updated the value.
22 /// </summary>
23 bool UpdatedValue { get; set; }
24
25 /// <summary>
26 /// The resolved value.
27 /// </summary>
28 string Value { get; set; }
29 }
30}