Skip to main content

IVariableResolution Interface

Result when resolving a variable.

Properties

PropertyDescription
DelayedResolveIndicates if the value contains variables that cannot be resolved yet.
IsDefaultIndicates whether a bind variables default value was used in the resolution.
UpdatedValueIndicates whether the resolution updated the value.
ValueThe resolved value.

WixToolset.Extensibility.dll version 5.0.0-rc.2+dbb148c20d2490cf85f3f62f7d59f8dbc5c1a2c5

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; }