Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CheckQuoted() [2/2]

static string System.Net.CookieParser.CheckQuoted ( string value)
inlinestaticpackage

Definition at line 206 of file CookieParser.cs.

207 {
208 if (value.Length < 2 || value[0] != '"' || value[value.Length - 1] != '"')
209 {
210 return value;
211 }
212 if (value.Length != 2)
213 {
214 return value.Substring(1, value.Length - 2);
215 }
216 return string.Empty;
217 }

References System.value.