Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Rdf.cs
1using System;
2
4{
8 public static class Rdf
9 {
13 public const string Namespace = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
14
18 public static readonly Uri Type = new Uri(Namespace + "type");
19
23 public static readonly Uri First = new Uri(Namespace + "first");
24
28 public static readonly Uri Rest = new Uri(Namespace + "rest");
29
33 public static readonly Uri Nil = new Uri(Namespace + "nil");
34
38 public static readonly Uri Subject = new Uri(Namespace + "subject");
39
43 public static readonly Uri Predicate = new Uri(Namespace + "predicate");
44
48 public static readonly Uri Object = new Uri(Namespace + "object");
49
53 public static readonly Uri Statement = new Uri(Namespace + "Statement");
54
58 public static readonly Uri Bag = new Uri(Namespace + "Bag");
59
63 public static readonly Uri Li = new Uri(Namespace + "li");
64
70 public static Uri ListItem(int Index) => new Uri(listItem + Index.ToString());
71
72 private const string listItem = Namespace + "_";
73 }
74}
RDF Schema Ontology
Definition: Rdf.cs:9
static readonly Uri Object
URI representing rdf:object
Definition: Rdf.cs:48
static readonly Uri Bag
URI representing rdf:Bag
Definition: Rdf.cs:58
static readonly Uri Subject
URI representing rdf:subject
Definition: Rdf.cs:38
static readonly Uri Predicate
URI representing rdf:predicate
Definition: Rdf.cs:43
const string Namespace
http://www.w3.org/1999/02/22-rdf-syntax-ns#
Definition: Rdf.cs:13
static Uri ListItem(int Index)
URI representing an item in a list.
static readonly Uri Rest
URI representing rdf:rest
Definition: Rdf.cs:28
static readonly Uri First
URI representing rdf:first
Definition: Rdf.cs:23
static readonly Uri Nil
URI representing rdf:nil
Definition: Rdf.cs:33
static readonly Uri Type
URI representing rdf:type
Definition: Rdf.cs:18
static readonly Uri Li
URI representing rdf:li
Definition: Rdf.cs:63
static readonly Uri Statement
URI representing rdf:Statement
Definition: Rdf.cs:53