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

In This Topic
    Nodes<T> Method
    In This Topic
    Returns a view representing the collection of child nodes of every document and element in the source view.
    Syntax
    'Declaration
     
    
    Public Shared Function Nodes(Of T As System.Xml.Linq.XContainer)( _
       ByVal view As View(Of T) _
    ) As View(Of XNode)
    public static View<XNode> Nodes<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 child node of every document and element in the source view.
    See Also