|
|
LOGICAL Add (Cookie)
|
/** Add an object to the collection.
@param {&ValueType} The object to add to the collection
@return logical True if the operation succeeded. */
|
|
|
LOGICAL AddArray (Cookie[])
|
/** Add an array of objects to the collection.
@param {&CollectionType}[] The array to add to the collection
@return logical True if the operation succeeded. */
|
|
|
LOGICAL Contains (Cookie)
|
/** Determine whether an object is in the collection.
@param {&ValueType} The object to check in the collection
@return logical True if the operation succeeded. */
|
|
|
LOGICAL Remove (Cookie)
|
/** Remove an object from the collection.
@param {&ValueType} The object to remove from the collection
@return logical True if the operation succeeded. */
|
|
|
OpenEdge.Net.HTTP.Cookie ToCookieArray ()
|
/* Returns the elements in this collection as an ABL array.
@return {&ValueType}[] An ABL array of the objects in this collection */
|