| 620 | } |
| 621 | |
| 622 | void WebRequestBase::SetMethod(StringView method) |
| 623 | { |
| 624 | DEATH_ASSERT(_impl != nullptr, "Cannot be called with an uninitialized object", ); |
| 625 | |
| 626 | _impl->SetMethod(method); |
| 627 | } |
| 628 | |
| 629 | void WebRequestBase::SetData(StringView text, StringView contentType) |
| 630 | { |
no test coverage detected