IVariableResolution Interface
Result when resolving a variable.
Properties
Section titled “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 5.0.0+41e11442b2ca93e444b60213b5ae99dcbab787d8 |
DelayedResolve Property
Section titled “DelayedResolve Property”Indicates if the value contains variables that cannot be resolved yet.
Declaration
Section titled “Declaration”public bool DelayedResolve { get; set; }IsDefault Property
Section titled “IsDefault Property”Indicates whether a bind variables default value was used in the resolution.
Declaration
Section titled “Declaration”public bool IsDefault { get; set; }UpdatedValue Property
Section titled “UpdatedValue Property”Indicates whether the resolution updated the value.
Declaration
Section titled “Declaration”public bool UpdatedValue { get; set; }Value Property
Section titled “Value Property”The resolved value.
Declaration
Section titled “Declaration”public string Value { get; set; }