| 979 | } |
| 980 | |
| 981 | String WebResponse::GetStatusText() const |
| 982 | { |
| 983 | DEATH_ASSERT(_impl != nullptr, "Cannot be called with an uninitialized object", {}); |
| 984 | |
| 985 | return _impl->GetStatusText(); |
| 986 | } |
| 987 | |
| 988 | Stream* WebResponse::GetStream() const |
| 989 | { |
no test coverage detected