Enum StringLiteralParsingType
Defines the types of string literal parsing that can be performed.
Namespace: System.Linq.Dynamic.Core.Config
Assembly: System.Linq.Dynamic.Core.dll
Syntax
public enum StringLiteralParsingType : byte
Fields
| Name | Description |
|---|---|
| Default | Represents the default string literal parsing type. Double quotes should be escaped using the default escape character (a ). To check if a Value equals a double quote, use this c# code:
|
| EscapeDoubleQuoteByTwoDoubleQuotes | Represents a string literal parsing type where a double quote should be escaped by an extra double quote ("). To check if a Value equals a double quote, use this c# code:
|