MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / get_header

Method get_header

thirdparty/bottle/bottle.py:1588–1590  ·  view source on GitHub ↗

Return the value of a request header, or a given default value.

(self, name, default=None)

Source from the content-addressed store, hash-verified

1586 return WSGIHeaderDict(self.environ)
1587
1588 def get_header(self, name, default=None):
1589 """ Return the value of a request header, or a given default value. """
1590 return self.headers.get(name, default)
1591
1592 @DictProperty('environ', 'bottle.request.cookies', read_only=True)
1593 def cookies(self):

Callers

nothing calls this directly

Calls 1

getMethod · 0.45

Tested by

no test coverage detected