1 write to Name
System.Net.Primitives (1)
System\Net\Cookie.cs (1)
104
Name
= name;
14 references to Name
System.Net.HttpListener (4)
src\libraries\Common\src\System\Net\CookieComparer.cs (2)
10
if (!string.Equals(left.
Name
, right.
Name
, StringComparison.OrdinalIgnoreCase))
src\libraries\Common\src\System\Net\CookieParser.cs (1)
773
bool first = cookie == null || string.IsNullOrEmpty(cookie.
Name
);
System\Net\HttpListenerRequest.cs (1)
42
if (cookie.
Name
.Length == 0)
System.Net.Primitives (10)
src\libraries\Common\src\System\Net\CookieComparer.cs (2)
10
if (!string.Equals(left.
Name
, right.
Name
, StringComparison.OrdinalIgnoreCase))
src\libraries\Common\src\System\Net\CookieParser.cs (1)
773
bool first = cookie == null || string.IsNullOrEmpty(cookie.
Name
);
System\Net\Cookie.cs (5)
703
&& string.Equals(
Name
, other.
Name
, StringComparison.OrdinalIgnoreCase)
713
StringComparer.OrdinalIgnoreCase.GetHashCode(
Name
),
742
sb.Append(
Name
).Append(EqualsLiteral).Append(Value);
785
string result =
Name
+ EqualsLiteral + Value;
System\Net\CookieCollection.cs (1)
52
if (string.Equals(c!.
Name
, name, StringComparison.OrdinalIgnoreCase))
System\Net\CookieContainer.cs (1)
718
if (string.IsNullOrEmpty(cookie.
Name
))