| 5173 | |
| 5174 | |
| 5175 | vector<uint8_t> BinaryView::GetRawMetadata(const string& key) |
| 5176 | { |
| 5177 | auto data = QueryMetadata(key); |
| 5178 | if (!data || !data->IsRaw()) |
| 5179 | throw QueryMetadataException("Failed to find key: " + key); |
| 5180 | return data->GetRaw(); |
| 5181 | } |
| 5182 | |
| 5183 | |
| 5184 | uint64_t BinaryView::GetUIntMetadata(const string& key) |
nothing calls this directly
no test coverage detected