Class StreamingEventGenerator
A JIT event generator for RDF/XML parsing that uses Streaming parsing to parse the events.
Inheritance
Inherited Members
Namespace: VDS.RDF.Parsing.Events.RdfXml
Assembly: dotNetRdf.dll
Syntax
public class StreamingEventGenerator : IRdfXmlJitEventGenerator, IJitEventGenerator<IRdfXmlEvent>, IEventGenerator<IRdfXmlEvent>
Remarks
Currently unimplemented stub class.
Constructors
| Improve this Doc View SourceStreamingEventGenerator(Stream, string, XmlReaderSettings)
Creates a new Streaming Event Generator.
Declaration
public StreamingEventGenerator(Stream stream, string baseUri = null, XmlReaderSettings xmlReaderSettings = null)
Parameters
Type | Name | Description |
---|---|---|
System.IO.Stream | stream | Stream. |
string | baseUri | Base URI. |
System.Xml.XmlReaderSettings | xmlReaderSettings | The settings to pass through to the underlying XMLReader instance. |
Remarks
Currently unimplemented stub class.
StreamingEventGenerator(TextReader, string, XmlReaderSettings)
Creates a new Streaming Event Generator.
Declaration
public StreamingEventGenerator(TextReader reader, string baseUri = null, XmlReaderSettings xmlReaderSettings = null)
Parameters
Type | Name | Description |
---|---|---|
System.IO.TextReader | reader | Text Reader. |
string | baseUri | Base URI. |
System.Xml.XmlReaderSettings | xmlReaderSettings | The settings to pass through to the underlying XMLReader instance. |
Remarks
Currently unimplemented stub class.
StreamingEventGenerator(string, string, XmlReaderSettings)
Creates a new Streaming Event Generator.
Declaration
public StreamingEventGenerator(string file, string baseUri = null, XmlReaderSettings xmlReaderSettings = null)
Parameters
Type | Name | Description |
---|---|---|
string | file | Filename. |
string | baseUri | Base URI. |
System.Xml.XmlReaderSettings | xmlReaderSettings | Settings to pass through to the underlying XML parser. |
Remarks
Currently unimplemented stub class.
Properties
| Improve this Doc View SourceFinished
Gets whether the event generator has finished generating events.
Declaration
public bool Finished { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Remarks
Currently unimplemented stub class.
Methods
| Improve this Doc View SourceGetNextEvent()
Gets the next event from the XML stream.
Declaration
public IRdfXmlEvent GetNextEvent()
Returns
Type | Description |
---|---|
IRdfXmlEvent |
Remarks
Currently unimplemented stub class.