NQuadsParser Class |
Namespace: VDS.RDF.Parsing
The NQuadsParser type exposes the following members.
Name | Description | |
---|---|---|
NQuadsParser |
Creates a new NQuads parser.
| |
NQuadsParser(NQuadsSyntax) |
Creates a new NQuads parser.
| |
NQuadsParser(TokenQueueMode) |
Creates a new NQuads parser.
| |
NQuadsParser(NQuadsSyntax, TokenQueueMode) |
Creates a new NQuads parser.
|
Name | Description | |
---|---|---|
Syntax |
Gets/Sets the NQuads syntax mode.
| |
TokenQueueMode |
Gets/Sets the token queue mode used.
| |
TraceTokeniser |
Gets/Sets whether Tokeniser Tracing is used.
|
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
Load(IRdfHandler, TextReader) |
Loads a RDF Dataset from the NQuads input using a RDF Handler.
| |
Load(IRdfHandler, String) |
Loads a RDF Dataset from the NQuads input using a RDF Handler.
| |
Load(ITripleStore, TextReader) |
Loads a RDF Dataset from the NQuads input into the given Triple Store.
| |
Load(ITripleStore, String) |
Loads a RDF Dataset from the NQuads input into the given Triple Store.
| |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString |
Gets the String representation of the Parser which is a description of the syntax it parses.
(Overrides ObjectToString.) |
Name | Description | |
---|---|---|
Warning |
Event which Readers can raise when they notice syntax that is ambigious/deprecated etc which can still be parsed
|
The Default Graph (if any) will be given the special Uri. nquads:default-graph
NQuads permits Blank Nodes and Literals to be used as Context, since the library only supports Graphs named with URIs these are translated into URIs of the following form:
nquads:bnode:12345678
nquads:literal:87654321
In these URIs the numbers are the libraries hash codes for the node used as the Context.