From f85e509dcb6da33c22f45ee27eff428398bbacf2 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 25 Mar 2021 21:59:47 -0700 Subject: Add XML doc to IVariableResolution --- .../Services/IVariableResolution.cs | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'src/WixToolset.Extensibility') diff --git a/src/WixToolset.Extensibility/Services/IVariableResolution.cs b/src/WixToolset.Extensibility/Services/IVariableResolution.cs index 82bacb31..adcec47f 100644 --- a/src/WixToolset.Extensibility/Services/IVariableResolution.cs +++ b/src/WixToolset.Extensibility/Services/IVariableResolution.cs @@ -2,15 +2,29 @@ namespace WixToolset.Extensibility.Services { -#pragma warning disable 1591 // TODO: add documentation + /// + /// Result when resolving a variable. + /// public interface IVariableResolution { + /// + /// Indicates if the value contains variables that cannot be resolved yet. + /// bool DelayedResolve { get; set; } + /// + /// Indicates whether a bind variables default value was used in the resolution. + /// bool IsDefault { get; set; } + /// + /// Indicates whether the resolution updated the value. + /// bool UpdatedValue { get; set; } + /// + /// The resolved value. + /// string Value { get; set; } } } -- cgit v1.2.3-55-g6feb