Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Unescape()
virtual
string
System.Uri.Unescape
(
string
path
)
inline
protected
virtual
Definition at line
3566
of file
Uri.cs
.
3567
{
3568
char
[]
dest
=
new
char
[
path
.Length];
3569
int
destPosition
= 0;
3570
dest
= UriHelper.UnescapeString(
path
, 0,
path
.Length,
dest
,
ref
destPosition
,
'\uffff'
,
'\uffff'
,
'\uffff'
,
UnescapeMode
.Unescape |
UnescapeMode
.UnescapeAll,
null
,
isQuery
:
false
);
3571
return
new
string
(
dest
, 0,
destPosition
);
3572
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
string
System.UnescapeMode
UnescapeMode
Definition
UnescapeMode.cs:5
References
System.UriHelper.UnescapeString()
.
System
Uri
Generated by
1.10.0