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