Implements a stack of cookies. Each cookie is pushed onto the stack by a parser, which takes its input from HttpHeaders. The stack can be populated for both client and server side cookies.
Construct a cookie stack with the specified initial extent. The stack will grow as necessary over time.
Iterate over all cookies in stack
Return a fresh cookie from the stack
Pop the stack all the way to zero
See Implementation
Implements a stack of cookies. Each cookie is pushed onto the stack by a parser, which takes its input from HttpHeaders. The stack can be populated for both client and server side cookies.