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

◆ UrlEncode() [2/4]

static ? string System.Web.HttpUtility.UrlEncode ( byte?[] bytes,
int offset,
int count )
inlinestatic

Definition at line 185 of file HttpUtility.cs.

186 {
187 if (bytes != null)
188 {
189 return Encoding.ASCII.GetString(UrlEncodeToBytes(bytes, offset, count));
190 }
191 return null;
192 }
static Encoding ASCII
Definition Encoding.cs:511
static ? byte[] UrlEncodeToBytes(string? str)

References System.Text.Encoding.ASCII, System.bytes, System.count, System.offset, and System.Web.HttpUtility.UrlEncodeToBytes().