Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
SparqlResultItem.cs
2{
7 {
15 {
16 this.Name = Name;
17 this.Value = Value;
18 this.Index = Index;
19 }
20
24 public string Name { get; }
25
29 public ISemanticElement Value { get; set; }
30
34 public int Index { get; }
35
37 public override string ToString()
38 {
39 return this.Name + "=" + (this.Value?.ToString() ?? "NULL");
40 }
41 }
42}
Contains an item in a record from the results of a SPARQL query.
ISemanticElement Value
Value of item in record.
string Name
Name of item in record.
SparqlResultItem(string Name, ISemanticElement Value, int Index)
Contains an item in a record from the results of a SPARQL query.
Interface for semantic nodes.
Interface for items in a record from the results of a SPARQL query.