diff options
Diffstat (limited to 'src/WixToolset.Extensibility/IBurnBackendExtension.cs')
-rw-r--r-- | src/WixToolset.Extensibility/IBurnBackendExtension.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Extensibility/IBurnBackendExtension.cs b/src/WixToolset.Extensibility/IBurnBackendExtension.cs index d5f71107..356d208d 100644 --- a/src/WixToolset.Extensibility/IBurnBackendExtension.cs +++ b/src/WixToolset.Extensibility/IBurnBackendExtension.cs | |||
@@ -17,16 +17,16 @@ namespace WixToolset.Extensibility | |||
17 | string ResolveUrl(string url, string fallbackUrl, string packageId, string payloadId, string fileName); | 17 | string ResolveUrl(string url, string fallbackUrl, string packageId, string payloadId, string fileName); |
18 | 18 | ||
19 | /// <summary> | 19 | /// <summary> |
20 | /// Called for each extension tuple that hasn't been handled yet. | 20 | /// Called for each extension symbol that hasn't been handled yet. |
21 | /// Use IBurnBackendHelper to add data to the appropriate data manifest. | 21 | /// Use IBurnBackendHelper to add data to the appropriate data manifest. |
22 | /// </summary> | 22 | /// </summary> |
23 | /// <param name="section">The linked section.</param> | 23 | /// <param name="section">The linked section.</param> |
24 | /// <param name="tuple">The current tuple.</param> | 24 | /// <param name="symbol">The current symbol.</param> |
25 | /// <returns> | 25 | /// <returns> |
26 | /// True if the extension handled the tuple, false otherwise. | 26 | /// True if the extension handled the symbol, false otherwise. |
27 | /// The Burn backend will warn on all unhandled tuples. | 27 | /// The Burn backend will warn on all unhandled symbols. |
28 | /// </returns> | 28 | /// </returns> |
29 | bool TryAddTupleToDataManifest(IntermediateSection section, IntermediateTuple tuple); | 29 | bool TryAddSymbolToDataManifest(IntermediateSection section, IntermediateSymbol symbol); |
30 | 30 | ||
31 | /// <summary> | 31 | /// <summary> |
32 | /// Called after all output changes occur and right before the output is bound into its final format. | 32 | /// Called after all output changes occur and right before the output is bound into its final format. |