HttpCookie::Name Property

 

Gets or sets the name of a cookie.

Namespace:   System.Web
Assembly:  System.Web (in System.Web.dll)

public:
property String^ Name {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The default value is a null reference (Nothing in Visual Basic) unless the constructor specifies otherwise.

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: