Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
CheckQuoted()
[2/2]
static
string
System.Net.CookieParser.CheckQuoted
(
string
value
)
inline
static
package
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
}
System.ExceptionArgument.value
@ value
References
System.value
.
System
Net
CookieParser
Generated by
1.10.0