You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
itsokto edited this page May 12, 2020
·
1 revision
Пример:
varserviceCollection=newServiceCollection();// Добавьте сконфигурированный HttpClient в ServiceCollection как SingletonserviceCollection.AddSingleton(provider =>{varhttpClientHandler=newHttpClientHandler{Proxy=newWebProxy("127.0.0.1",8888)};returnnewHttpClient(httpClientHandler);});// Передайте в конструктор VkApi serviceCollectionvarvkApi=newVkApi(serviceCollection);