Description
-
References specific cookie in the collection.
Property type
-
A HttpCookie
object.
Syntax
-
object.Item(Index)
The Item Property syntax has these parts:
| object |
An expression
evaluating to an object of type HttpCookies. |
| Index |
Required. A Variant
value. String expression as cookie name, or integer as
cookie index. |
Remarks
-
This property will return one specific cookie from the
collection. It can be used both for Request and Response objects.
After you get reference to the cookie, you can access
its Name
and Value
properties, add Attributes
etc.
|