(string url)
| 52 | } |
| 53 | |
| 54 | static async Task<byte[]> GetStaticDataBytes(string url) |
| 55 | { |
| 56 | using var httpClient = new HttpClient(); |
| 57 | var fileBytes = await httpClient.GetByteArrayAsync(url).ConfigureAwait(false); |
| 58 | return fileBytes; |
| 59 | } |
| 60 | |
| 61 | static async Task<byte[]> GetProtoBytes() |
| 62 | { |
nothing calls this directly
no outgoing calls
no test coverage detected