Class XElementExtensions
Static class containing XElement extension methods to assist with Tableau XML format's Feature Forked Subtree (FFS) mangling.
Namespace: Tableau.Migration.Content.Files.Xml
Assembly: Tableau.Migration.dll
Syntax
public static class XElementExtensions
Methods
GetFeatureFlaggedAttributes(XElement, XName)
Gets all attributes that match (without FFS mangling considered) a given name.
Declaration
public static IEnumerable<XAttribute> GetFeatureFlaggedAttributes(this XElement el, XName unmangledName)
Parameters
Type | Name | Description |
---|---|---|
XElement | el | The element to get attributes for. |
XName | unmangledName | The unmangled/non-FFS name to search for. |
Returns
Type | Description |
---|---|
IEnumerable<XAttribute> | The attributes with the given name. |