Class BaseImmutableQuadDataset
Abstract Base class for immutable quad datasets.
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: VDS.RDF.Query.Datasets
Assembly: dotNetRDF.dll
Syntax
public abstract class BaseImmutableQuadDataset : BaseQuadDataset, ISparqlDataset
Methods
| Improve this Doc View SourceAddGraph(IGraph)
Throws an error as this dataset is immutable.
Declaration
public sealed override bool AddGraph(IGraph g)
Parameters
Type | Name | Description |
---|---|---|
IGraph | g | Graph. |
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
| Improve this Doc View SourceAddQuad(Uri, Triple)
Throws an error as this dataset is immutable.
Declaration
protected override bool AddQuad(Uri graphUri, Triple t)
Parameters
Type | Name | Description |
---|---|---|
System.Uri | graphUri | Graph URI. |
Triple | t | Triple. |
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
| Improve this Doc View SourceGetModifiableGraph(Uri)
Throws an error as this dataset is immutable.
Declaration
public sealed override IGraph GetModifiableGraph(Uri graphUri)
Parameters
Type | Name | Description |
---|---|---|
System.Uri | graphUri | Graph URI. |
Returns
Type | Description |
---|---|
IGraph |
Overrides
| Improve this Doc View SourceRemoveGraph(Uri)
Throws an error as this dataset is immutable.
Declaration
public sealed override bool RemoveGraph(Uri graphUri)
Parameters
Type | Name | Description |
---|---|---|
System.Uri | graphUri | Graph URI. |
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
| Improve this Doc View SourceRemoveQuad(Uri, Triple)
Throws an error as this dataset is immutable.
Declaration
protected override bool RemoveQuad(Uri graphUri, Triple t)
Parameters
Type | Name | Description |
---|---|---|
System.Uri | graphUri | Graph URI. |
Triple | t | Triple. |
Returns
Type | Description |
---|---|
System.Boolean |