| 937 | } |
| 938 | |
| 939 | String WebResponse::GetURL() const |
| 940 | { |
| 941 | DEATH_ASSERT(_impl != nullptr, "Cannot be called with an uninitialized object", {}); |
| 942 | |
| 943 | return _impl->GetURL(); |
| 944 | } |
| 945 | |
| 946 | String WebResponse::GetHeader(StringView name) const |
| 947 | { |
no test coverage detected