Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
DublinCoreTerms.cs
1using System;
3
5{
10 {
15 {
16 }
17
21 public string OntologyNamespace => Namespace;
22
26 public string OntologyPrefix => "dcterms";
27
31 public bool ShowByDefault => true;
32
38 public Grade Supports(string Uri)
39 {
40 return Uri.StartsWith(Namespace) ? Grade.Ok : Grade.NotAtAll;
41 }
42
46 public const string Namespace = "http://purl.org/dc/terms/";
47
51 public static readonly Uri type = new Uri(Namespace + "type");
52
56 public static readonly Uri created = new Uri(Namespace + "created");
57
61 public static readonly Uri updated = new Uri(Namespace + "updated");
62
66 public static readonly Uri creator = new Uri(Namespace + "creator");
67
71 public static readonly Uri contributor = new Uri(Namespace + "contributor");
72 }
73}
static readonly Uri creator
http://purl.org/dc/terms/creator
static readonly Uri type
http://purl.org/dc/terms/type
string OntologyPrefix
Well-known ontology prefix.
const string Namespace
http://purl.org/dc/terms/
bool ShowByDefault
If the ontology should be shown by default in query interfaces.
Grade Supports(string Uri)
If the interface understands objects such as Uri .
static readonly Uri contributor
http://purl.org/dc/terms/contributor
static readonly Uri updated
http://purl.org/dc/terms/updated
static readonly Uri created
http://purl.org/dc/terms/created
Interface for semantic ontologies.
Definition: IOntology.cs:9
Grade
Grade enumeration
Definition: Grade.cs:7