1
0
Форкнуть 0

Set the default web proxy for ADAL to use

This commit is contained in:
James Fenton 2019-09-04 16:36:25 +02:00
Родитель 9270c89a0c
Коммит 28f85662b6
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -511,6 +511,9 @@ namespace Microsoft.Alm.Authentication
{
handler.Proxy = proxy;
handler.UseProxy = true;
// Set the default web proxy for ADAL to use
WebRequest.DefaultWebProxy = proxy;
}
}
}