1 write to rawPath
System (1)
net\System\Net\HttpListenerRequestUriBuilder.cs (1)
134
rawPath
= GetPath(rawUri);
12 references to rawPath
System (12)
net\System\Net\HttpListenerRequestUriBuilder.cs (12)
137
if (!HttpSysSettings.EnableNonUtf8 || (
rawPath
== string.Empty))
139
string path =
rawPath
;
167
cookedUriHost,
rawPath
, cookedUriQuery);
192
Debug.Assert(!string.IsNullOrEmpty(
rawPath
), "'rawPath' must have at least one character.");
218
LogWarning("BuildRequestUriUsingRawPath", SR.net_log_listener_cant_convert_raw_path,
rawPath
,
231
while (index <
rawPath
.Length)
233
current =
rawPath
[index];
237
Debug.Assert(index + 2 <
rawPath
.Length, "Expected >=2 characters after '%' (e.g. %2F)");
240
current =
rawPath
[index];
244
Debug.Assert(index + 4 <
rawPath
.Length, "Expected >=4 characters after '%u' (e.g. %u0062)");
252
if (!AppendUnicodeCodePointValuePercentEncoded(
rawPath
.Substring(index + 1, 4)))
261
if (!AddPercentEncodedOctetToRawOctetsList(encoding,
rawPath
.Substring(index, 2)))