4 writes to m_path
System (4)
net\System\Net\cookie.cs (4)
272
m_path
= (value == null? String.Empty : value);
502
m_path
= path;
505
m_path
= path.Substring(0, path.LastIndexOf('/')); //may be empty
510
m_path
= path.Substring(0, path.LastIndexOf('/')+1);
9 references to m_path
System (9)
net\System\Net\cookie.cs (9)
269
return
m_path
;
279
return (Plain || m_path_implicit || (
m_path
.Length == 0))
284
+
m_path
305
clonedCookie.Path =
m_path
;
517
if (!path.StartsWith(CookieParser.CheckQuoted(
m_path
))) {
519
throw new CookieException(SR.GetString(SR.net_cookie_attribute, PathAttributeName,
m_path
));
800
if (!m_path_implicit &&
m_path
!=null &&
m_path
.Length>0) {
801
result += SeparatorLiteral + PathAttributeName + EqualsLiteral +
m_path
;