Show / Hide Table of Contents

Interface IStoreWriter

Interface to be implemented by Triple Store Writers.
Namespace: VDS.RDF
Assembly: dotNetRDF.dll
Syntax
public interface IStoreWriter

Methods

| Improve this Doc View Source

Save(ITripleStore, TextWriter)

Method for saving data to a Triple Store.
Declaration
void Save(ITripleStore store, TextWriter output)
Parameters
Type Name Description
ITripleStore store Triple Store.
System.IO.TextWriter output Write to save to.
| Improve this Doc View Source

Save(ITripleStore, TextWriter, Boolean)

Method for saving data to a Triple Store.
Declaration
void Save(ITripleStore store, TextWriter output, bool leaveOpen)
Parameters
Type Name Description
ITripleStore store Triple Store.
System.IO.TextWriter output Write to save to.
System.Boolean leaveOpen Boolean flag indicating if the output writer should be left open by the writer when it completes.
| Improve this Doc View Source

Save(ITripleStore, String)

Method for saving data to a Triple Store.
Declaration
void Save(ITripleStore store, string filename)
Parameters
Type Name Description
ITripleStore store Triple Store.
System.String filename File to save to.

Events

| Improve this Doc View Source

Warning

Event which writers can raise to indicate possible ambiguities or issues in the syntax they are producing
Declaration
event StoreWriterWarning Warning
Event Type
Type Description
StoreWriterWarning

Extension Methods

Extensions.AsEnumerable<T>(T)
  • Improve this Doc
  • View Source
In This Article
  • Methods
    • Save(ITripleStore, TextWriter)
    • Save(ITripleStore, TextWriter, Boolean)
    • Save(ITripleStore, String)
  • Events
    • Warning
  • Extension Methods
Back to top Generated by DocFX