TokeniserEscapeMode Enumeration |
Possible Escape Handling Modes for the Tokeniser.
Namespace:
VDS.RDF.Parsing.Tokens
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public enum TokeniserEscapeMode
Public Enumeration TokeniserEscapeMode
Members
| Member name | Value | Description |
---|
| Uri | 0 |
Escaping for URIs (only \u and \U escapes are valid)
|
| PermissiveUri | 1 |
Permissive escaping for URIs (only \" is invalid)
|
| QuotedLiterals | 2 |
Escaping for Quoted Literals (every escape but \< and \' is valid)
|
| QuotedLiteralsAlternate | 3 |
Escaping for single Quoted Literals (every escape but \< and \" is valid)
|
| QuotedLiteralsBoth | 4 |
Escaping for Quoted Literals (every escape but \< is valid), this differs from QuotedLiterals and QuotedLiteralsAlternate in that it allows both \' and \"
|
| QName | 5 |
Escaping for QNames (only Unicode espaces are valid)
|
See Also