Enum TokeniserEscapeMode
Possible Escape Handling Modes for the Tokeniser.
Namespace: VDS.RDF.Parsing.Tokens
Assembly: dotNetRDF.dll
Syntax
public enum TokeniserEscapeMode
Fields
Name | Description |
---|---|
PermissiveUri | Permissive escaping for URIs (only \" is invalid) |
QName | Escaping for QNames (only Unicode espaces are valid) |
QuotedLiterals | Escaping for Quoted Literals (every escape but \< and \' is valid) |
QuotedLiteralsAlternate | Escaping for single Quoted Literals (every escape but \< and \" is valid) |
QuotedLiteralsBoth | Escaping for Quoted Literals (every escape but \< is valid), this differs from QuotedLiterals and QuotedLiteralsAlternate in that it allows both \' and \" |
Uri | Escaping for URIs (only \u and \U escapes are valid) |