GraphExtensionsSaveToStream Method (IGraph, TextWriter, IStoreWriter) |
Saves a Graph to a stream.
Namespace:
VDS.RDF
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public static void SaveToStream(
this IGraph g,
TextWriter streamWriter,
IStoreWriter writer
)
<ExtensionAttribute>
Public Shared Sub SaveToStream (
g As IGraph,
streamWriter As TextWriter,
writer As IStoreWriter
)
Parameters
- g
- Type: VDS.RDFIGraph
Graph to save. - streamWriter
- Type: System.IOTextWriter
Stream to save to. - writer
- Type: VDS.RDFIStoreWriter
Writer to use.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IGraph. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also