| 77 | } |
| 78 | |
| 79 | int ServicePropertiesImpl::FindCaseSensitive(const std::string& key) const |
| 80 | { |
| 81 | for (std::size_t i = 0; i < keys.size(); ++i) |
| 82 | { |
| 83 | if (key == keys[i]) |
| 84 | { |
| 85 | return static_cast<int>(i); |
| 86 | } |
| 87 | } |
| 88 | return -1; |
| 89 | } |
| 90 | |
| 91 | const std::vector<std::string>& ServicePropertiesImpl::Keys() const |
| 92 | { |