Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type t = {
expiration : expiration;
domain : string option;
path : string option;
secure : bool;
http_only : bool;
}
A header which a server sends to a client to request that the client returns the cookie in future requests, under certain conditions.
include sig ... end
val http_only : t -> bool
module Fields : sig ... end
val t_of_sexp : Ppx_sexp_conv_lib.Sexp.t -> t
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t
val make :
?expiration:expiration ->
?path:string ->
?domain:string ->
?secure:bool ->
?http_only:bool ->
cookie ->
t
val serialize : ?version:[ `HTTP_1_0 | `HTTP_1_1 ] -> t -> string * string
Return an HTTP header
val value : t -> string
The value
val expiration : t -> expiration
The expiration
val domain : t -> string option
The domain for which the cookie is valid, if any
val path : t -> string option
The path for which the cookie is valid, if any
val secure : t -> bool
Has the cookie's secure attribute been set?