HttpHeadersWrapper constructor

HttpHeadersWrapper(
  1. HttpHeaders? origin
)

Constructor.

  • origin: the original header. Note: it can be null. However, if null, you can't call most of methods, including origin. It is design to make it easier to implement a dummy header.

Implementation

HttpHeadersWrapper(HttpHeaders? origin): _origin = origin;