Gets a named content stream. The name of the stream.
| 82 | /// </summary> |
| 83 | /// <param name="name">The name of the stream.</param> |
| 84 | std::vector<char> stream(const std::string &name) |
| 85 | { |
| 86 | const auto it = _named_streams.find(name); |
| 87 | if (it == _named_streams.end()) |
| 88 | return {}; |
| 89 | return msf_reader::stream(it->second); |
| 90 | } |
| 91 | |
| 92 | /// <summary> |
| 93 | /// Walks through all symbols in this PDB file and returns them. |
no outgoing calls
no test coverage detected