TopicTransformationExtensionsFollowingSiblings Method
Return all following sibling elements that optionally match the given element's name
Namespace: Sandcastle.Core.PresentationStyle.TransformationAssembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2024.9.12.0
public static IEnumerable<XElement> FollowingSiblings(
this XElement element,
XName name
)
<ExtensionAttribute>
Public Shared Function FollowingSiblings (
element As XElement,
name As XName
) As IEnumerable(Of XElement)
public:
[ExtensionAttribute]
static IEnumerable<XElement^>^ FollowingSiblings(
XElement^ element,
XName^ name
)
[<ExtensionAttribute>]
static member FollowingSiblings :
element : XElement *
name : XName -> IEnumerable<XElement>
- element XElement
- The starting element
- name XName
- The element name to match or null for all preceding siblings
IEnumerableXElementAn enumerable list of the following sibling elements optionally limited to those with a
matching nameIn Visual Basic and C#, you can call this method as an instance method on any object of type
XElement. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).