IResolveContext Interface
Context for resolve.
Properties
| Property | Description |
|---|---|
| AllowUnresolvedVariables | Indicates whether to allow localization and bind variables to remain unresolved. |
| BindPaths | Bind paths used during resolution. |
| BindVariables | Bind variables used during resolution. |
| CancellationToken | Cancellation token. |
| ExtensionData | Extension data. |
| Extensions | Resolve extensions. |
| FilterCultures | List of cultures to filter the localizations. |
| IntermediateFolder | Intermediate folder. |
| IntermediateRepresentation | Intermediate to resolve. |
| Localizations | Localizations used to resolve. |
| OutputPath | Output path. |
| ServiceProvider | Service provider. |
WixToolset.Extensibility.dll version 5.0.0+41e11442b2ca93e444b60213b5ae99dcbab787d8 |
AllowUnresolvedVariables Property
Indicates whether to allow localization and bind variables to remain unresolved.
Declaration
public bool AllowUnresolvedVariables { get; set; }BindPaths Property
Bind paths used during resolution.
Declaration
public System.Collections.Generic.IReadOnlyCollection<WixToolset.Extensibility.Data.IBindPath> BindPaths { get; set; }BindVariables Property
Bind variables used during resolution.
Declaration
public System.Collections.Generic.IDictionary<System.String,System.String> BindVariables { get; set; }CancellationToken Property
Cancellation token.
Declaration
public System.Threading.CancellationToken CancellationToken { get; set; }ExtensionData Property
Extension data.
Declaration
public System.Collections.Generic.IReadOnlyCollection<WixToolset.Extensibility.IExtensionData> ExtensionData { get; set; }Extensions Property
Resolve extensions.
Declaration
public System.Collections.Generic.IReadOnlyCollection<WixToolset.Extensibility.IResolverExtension> Extensions { get; set; }FilterCultures Property
List of cultures to filter the localizations.
Declaration
public System.Collections.Generic.IReadOnlyCollection<System.String> FilterCultures { get; set; }IntermediateFolder Property
Intermediate folder.
Declaration
public string IntermediateFolder { get; set; }IntermediateRepresentation Property
Intermediate to resolve.
Declaration
public WixToolset.Data.Intermediate IntermediateRepresentation { get; set; }Localizations Property
Localizations used to resolve.
Declaration
public System.Collections.Generic.IReadOnlyCollection<WixToolset.Data.Localization> Localizations { get; set; }OutputPath Property
Output path.
Declaration
public string OutputPath { get; set; }ServiceProvider Property
Service provider.
Declaration
public System.IServiceProvider ServiceProvider { get; set; }