| 951 | } |
| 952 | |
| 953 | Array<String> WebResponse::GetAllHeaderValues(StringView name) const |
| 954 | { |
| 955 | DEATH_ASSERT(_impl != nullptr, "Cannot be called with an uninitialized object", {}); |
| 956 | |
| 957 | return _impl->GetAllHeaderValues(name); |
| 958 | } |
| 959 | |
| 960 | String WebResponse::GetMimeType() const |
| 961 | { |
nothing calls this directly
no test coverage detected