| 944 | } |
| 945 | |
| 946 | String WebResponse::GetHeader(StringView name) const |
| 947 | { |
| 948 | DEATH_ASSERT(_impl != nullptr, "Cannot be called with an uninitialized object", {}); |
| 949 | |
| 950 | return _impl->GetHeader(name); |
| 951 | } |
| 952 | |
| 953 | Array<String> WebResponse::GetAllHeaderValues(StringView name) const |
| 954 | { |
nothing calls this directly
no test coverage detected