Skip to content

IVariableResolution Interface

Result when resolving a variable.

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+41e11442b2ca93e444b60213b5ae99dcbab787d8

Indicates if the value contains variables that cannot be resolved yet.

public bool DelayedResolve { get; set; }

Indicates whether a bind variables default value was used in the resolution.

public bool IsDefault { get; set; }

Indicates whether the resolution updated the value.

public bool UpdatedValue { get; set; }

The resolved value.

public string Value { get; set; }