aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/manual/cowboy_req.delete_resp_header.asciidoc
blob: 7a32d7053a13c1de6b49f29fb6aa3a0d01ac5db4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
= cowboy_req:delete_resp_header(3)

== Name

cowboy_req:delete_resp_header - Delete a response header

== Description

[source,erlang]
----
delete_resp_header(Name, Req :: cowboy_req:req()) -> Req

Name :: binary()  %% lowercase; case insensitive
----

Delete the given response header.

The header name must be given as a lowercase binary string.
While header names are case insensitive, Cowboy requires them
to be given as lowercase to function properly.

== Arguments

Name::

Header name as a lowercase binary string.

Req::

The Req object.

== Return value

A new Req object is returned.

The returned Req object must be used from that point onward,
otherwise the header will still be sent in the response.

== Changelog

* *1.0*: Function introduced.

== Examples

.Remove the content-type header from the response
[source,erlang]
----
Req = cowboy_req:delete_resp_header(<<"content-type">>, Req0),
----

== See also

link:man:cowboy_req(3)[cowboy_req(3)],
link:man:cowboy_req:set_resp_header(3)[cowboy_req:set_resp_header(3)],
link:man:cowboy_req:has_resp_header(3)[cowboy_req:has_resp_header(3)]