IVariableResolution Interface
Result when resolving a variable.
Properties
Property | Description |
---|---|
DelayedResolve | Indicates if the value contains variables that cannot be resolved yet. |
IsDefault | Indicates whether a bind variables default value was used in the resolution. |
UpdatedValue | Indicates whether the resolution updated the value. |
Value | The resolved value. |
WixToolset.Extensibility.dll
version 4.0.2+644ed0118bae1aa885bb6cc906dc6c0b904de4d9
DelayedResolve Property
Indicates if the value contains variables that cannot be resolved yet.
Declaration
public bool DelayedResolve { get; set; }
IsDefault Property
Indicates whether a bind variables default value was used in the resolution.
Declaration
public bool IsDefault { get; set; }
UpdatedValue Property
Indicates whether the resolution updated the value.
Declaration
public bool UpdatedValue { get; set; }
Value Property
The resolved value.
Declaration
public string Value { get; set; }