System::Net::PathList class

PathList class

Represents the list of the CookieCollection class instances. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

class PathList : public System::Object

Methods

MethodDescription
static Create()Creates a new instance.
get_Count() constReturns the number of items.
get_SyncRoot() constReturns the object through which the collection is being synchronized.
GetCookiesCount()Returns the number of cookies of all collection items.
GetEnumerator()Returns the enumerator for the current collection.
idx_get(String)Gets the cookie collection by specified path.
idx_set(String, System::SharedPtr<CookieCollection>)Sets the cookie collection by specified path.

See Also