Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
DublinCoreQualifiers.cs
1using System;
3
5{
10 {
15 {
16 }
17
21 public string OntologyNamespace => Namespace;
22
26 public string OntologyPrefix => "dcq";
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/metadata/dublin_core_qualifiers#";
47 }
48}
const string Namespace
http://purl.org/metadata/dublin_core_qualifiers#
Grade Supports(string Uri)
If the interface understands objects such as Uri .
bool ShowByDefault
If the ontology should be shown by default in query interfaces.
Interface for semantic ontologies.
Definition: IOntology.cs:9
Grade
Grade enumeration
Definition: Grade.cs:7