Cookie.this

Construct a cookie with the provided attributes. You add these to an output request using HttpClient.addCookie(), or the equivalent.

  1. this()
  2. this(const(char)[] name, const(char)[] value)
    class Cookie
    this
    (
    const(char)[] name
    ,
    const(char)[] value
    )
  3. const(char)[] name;
  4. const(char)[] path;
  5. const(char)[] value;
  6. const(char)[] domain;
  7. const(char)[] comment;

Meta