ComponentOne Data Source for Entity Framework
C1.LiveLinq.LiveViews.Xml Namespace / XmlExtensions Class / DescendantNodes<T> Method
The type of the objects in the source view, constrained to System.Xml.Linq.XContainer.
The source view.

In This Topic
    DescendantNodes<T> Method
    In This Topic
    Returns a view representing the collection of the descendent nodes of every element and document in the source view.
    Syntax
    'Declaration
     
    
    Public Shared Function DescendantNodes(Of T As System.Xml.Linq.XContainer)( _
       ByVal view As View(Of T) _
    ) As View(Of XNode)
    public static View<XNode> DescendantNodes<T>( 
       View<T> view
    )
    where T: System.Xml.Linq.XContainer

    Parameters

    view
    The source view.

    Type Parameters

    T
    The type of the objects in the source view, constrained to System.Xml.Linq.XContainer.

    Return Value

    A view containing every descendent node of every document and element in the source view.
    See Also