HttpCookie.Name Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the name of a cookie.
public:
property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
public string Name { get; set; }
member this.Name : string with get, set
Public Property Name As String
Property Value
The default value is a null reference (Nothing
in Visual Basic) unless the constructor specifies otherwise.
Examples
The following code example receives a cookie collection from the client in the Cookie
header and loops through the collection looking for a cookie with the specific name.
int loop1;
HttpCookie MyCookie;
HttpCookieCollection MyCookieCollection;
MyCookieCollection = Request.Cookies;
for (loop1 = 0; loop1 < MyCookieCollection.Count; loop1++)
{
MyCookie = MyCookieCollection[loop1];
if (MyCookie.Name == "UserName")
{
//...
}
}
Dim loop1 As Integer
Dim MyCookie As HttpCookie
Dim MyCookieCollection As HttpCookieCollection
MyCookieCollection = Request.Cookies
For loop1 = 0 TO MyCookieCollection.Count - 1
MyCookie = MyCookieCollection(loop1)
If MyCookie.Name = "UserName" Then
'...
End If
Next loop1
Applies to
See also
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET