Method | Description | |
---|---|---|
GetStringValueFromToken ( string tokenValue ) : string | ||
JsonUnescape ( this str ) : string | ||
PerformOneEscapeStep ( string from, string to, IEnumerable |
this ugly method performs one escape sequence step. if it is called with (@"\t", "\t", ["aaa\\tbbb\\tccc", "\\tddd"]) it will return [ "aaa", "\t", "bbb", "\t", "ccc", "\t", "ddd" ]
|
public static GetStringValueFromToken ( string tokenValue ) : string | ||
tokenValue | string | |
return | string |
public static JsonUnescape ( this str ) : string | ||
str | this | |
return | string |
public static PerformOneEscapeStep ( string from, string to, IEnumerable |
||
from | string | the sequence that must be replaced |
to | string | what it must be replaced with |
inputs | IEnumerable |
an enumerable of strings that must all have the escape performed on them |
return | IEnumerable |