| 45 | } |
| 46 | |
| 47 | Url::Scheme |
| 48 | Url::Scheme::operator=(cripts::string_view scheme) |
| 49 | { |
| 50 | CAssert(!_owner->ReadOnly()); // This can not be a read-only URL |
| 51 | _ensure_initialized(_owner); |
| 52 | TSUrlSchemeSet(_owner->_bufp, _owner->_urlp, scheme.data(), scheme.size()); |
| 53 | _owner->_modified = true; |
| 54 | Reset(); |
| 55 | _loaded = false; |
| 56 | |
| 57 | return *this; |
| 58 | } |
| 59 | |
| 60 | cripts::string_view |
| 61 | Url::Host::GetSV() |
nothing calls this directly
no test coverage detected