Method | Description | |
---|---|---|
AddAdditionalSelectorChars ( string chars ) : void |
Adds specific characters to the allowed selector chars.
|
|
AddAlphanumericSelectors ( ) : void |
Includes a-z and A-Z in the list of allowed selector chars.
|
|
AddOperators ( string chars ) : void |
Adds specific characters to the allowed operator chars. An operator is a character that is in the selector string that splits the selectors.
|
|
ParseFormat ( string format, string formatterExtensionNames ) : Format | ||
Parser ( ErrorAction errorAction = ErrorAction.Ignore ) : System | ||
UseAlternativeBraces ( char opening, char closing ) : void | ||
UseAlternativeEscapeChar ( char alternativeEscapeChar = '\\' ) : void |
Sets the AlternativeEscaping option to True so that braces will only be escaped after the specified character.
|
|
UseBraceEscaping ( ) : void |
[Default] Uses {{ and }} for escaping braces for compatibility with String.Format. However, this does not work very well with nested placeholders, so it is recommended to use an alternative escape char.
|
Method | Description | |
---|---|---|
FormatterNameExists ( string name, string formatterExtensionNames ) : bool |
public AddAdditionalSelectorChars ( string chars ) : void | ||
chars | string | |
return | void |
public ParseFormat ( string format, string formatterExtensionNames ) : Format | ||
format | string | |
formatterExtensionNames | string | |
return | Format |
public Parser ( ErrorAction errorAction = ErrorAction.Ignore ) : System | ||
errorAction | ErrorAction | |
return | System |
public UseAlternativeBraces ( char opening, char closing ) : void | ||
opening | char | |
closing | char | |
return | void |
public UseAlternativeEscapeChar ( char alternativeEscapeChar = '\\' ) : void | ||
alternativeEscapeChar | char | Defaults to backslash |
return | void |