Returns the collection of elements that represent a single result row.

Namespace: BrightstarDB.Client
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public static IEnumerable<XElement> SparqlResultRows(
	this XDocument document
)
Visual Basic
<ExtensionAttribute> 
Public Shared Function SparqlResultRows ( 
	document As XDocument
) As IEnumerable(Of XElement)
Visual C++
public:
[ExtensionAttribute]
static IEnumerable<XElement^>^ SparqlResultRows(
	XDocument^ document
)
F#
static member SparqlResultRows : 
        document : XDocument -> IEnumerable<XElement> 

Parameters

document
Type: System.Xml.Linq..::..XDocument
The XDocument containing the result data

Return Value

Type: IEnumerable<(Of <(<'XElement>)>)>
An enumeration of elements.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type XDocument. 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).

See Also