Returns the variable column names in the Sparql result.
Namespace: BrightstarDB.Client
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
C# |
---|
public static IEnumerable<string> GetVariableNames(
this XDocument doc
) |
Visual Basic |
---|
<ExtensionAttribute>
Public Shared Function GetVariableNames (
doc As XDocument
) As IEnumerable(Of String) |
Visual C++ |
---|
public:
[ExtensionAttribute]
static IEnumerable<String^>^ GetVariableNames(
XDocument^ doc
) |
F# |
---|
static member GetVariableNames :
doc : XDocument -> IEnumerable<string>
|
Parameters
- doc
- Type: System.Xml.Linq..::..XDocument
The XDocument containing the result data.
Return Value
Type:
IEnumerable<(Of <(<'String>)>)>An IEnumerable string of column variable names.
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