@joebigelow / wix / commits / 9cba2782

Deprecate the use of inner text

Rob Mensching committed Jun 23, 2020 at 01:12 UTC 9cba27824ac9caf46d7e08f2254ff8dcf280b3d1
1 file changed +2
src/WixToolset.Extensibility/Services/IParseHelper.cs
+2
@@ -338,6 +338,7 @@ namespace WixToolset.Extensibility.Services
338 /// </summary>
339 /// <param name="node">The node to ensure inner text is a condition.</param>
340 /// <returns>The value converted into a safe condition.</returns>
341 + [Obsolete]
342 string GetConditionInnerText(XElement node);
343
344 /// <summary>
@@ -345,6 +346,7 @@ namespace WixToolset.Extensibility.Services
346 /// </summary>
347 /// <param name="element">The element with inner text to be trimmed.</param>
348 /// <returns>The node's inner text trimmed.</returns>
349 + [Obsolete]
350 string GetTrimmedInnerText(XElement element);
351
352 /// <summary>