Reset stream on get certificate

This commit is contained in:
artsouflMS 2020-11-09 13:57:17 +00:00
Родитель f9ce07c667
Коммит 60a10ec223
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -43,6 +43,7 @@ namespace Microsoft.Tools.WindowsDevicePortal
using (MemoryStream outStream = new MemoryStream())
{
await stream.CopyToAsync(outStream);
outStream.Position = 0;
using (BinaryReader reader = new BinaryReader(outStream))
{
byte[] certData = reader.ReadBytes((int)outStream.Length);