diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-06-27 14:34:27 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-06-27 14:43:36 -0700 |
| commit | f8c8adbe2c753ce6448369c49e87f9ff937af344 (patch) | |
| tree | ecbf7bd56c84d030b71df009c66d04adf8480a84 /src/wixext/HttpExtensionData.cs | |
| parent | 836cb478b674e866e1430c03afb9651e85b48f2a (diff) | |
| download | wix-f8c8adbe2c753ce6448369c49e87f9ff937af344.tar.gz wix-f8c8adbe2c753ce6448369c49e87f9ff937af344.tar.bz2 wix-f8c8adbe2c753ce6448369c49e87f9ff937af344.zip | |
The Great Tuple to Symbol Rename (tm)
Diffstat (limited to 'src/wixext/HttpExtensionData.cs')
| -rw-r--r-- | src/wixext/HttpExtensionData.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/wixext/HttpExtensionData.cs b/src/wixext/HttpExtensionData.cs index 2ae4a911..04e3dcee 100644 --- a/src/wixext/HttpExtensionData.cs +++ b/src/wixext/HttpExtensionData.cs | |||
| @@ -16,15 +16,15 @@ namespace WixToolset.Http | |||
| 16 | /// <value>The default culture.</value> | 16 | /// <value>The default culture.</value> |
| 17 | public override string DefaultCulture => "en-US"; | 17 | public override string DefaultCulture => "en-US"; |
| 18 | 18 | ||
| 19 | public override bool TryGetTupleDefinitionByName(string name, out IntermediateTupleDefinition tupleDefinition) | 19 | public override bool TryGetSymbolDefinitionByName(string name, out IntermediateSymbolDefinition symbolDefinition) |
| 20 | { | 20 | { |
| 21 | tupleDefinition = HttpTupleDefinitions.ByName(name); | 21 | symbolDefinition = HttpSymbolDefinitions.ByName(name); |
| 22 | return tupleDefinition != null; | 22 | return symbolDefinition != null; |
| 23 | } | 23 | } |
| 24 | 24 | ||
| 25 | public override Intermediate GetLibrary(ITupleDefinitionCreator tupleDefinitions) | 25 | public override Intermediate GetLibrary(ISymbolDefinitionCreator symbolDefinitions) |
| 26 | { | 26 | { |
| 27 | return Intermediate.Load(typeof(HttpExtensionData).Assembly, "WixToolset.Http.http.wixlib", tupleDefinitions); | 27 | return Intermediate.Load(typeof(HttpExtensionData).Assembly, "WixToolset.Http.http.wixlib", symbolDefinitions); |
| 28 | } | 28 | } |
| 29 | } | 29 | } |
| 30 | } | 30 | } |
