mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-16 00:23:35 +01:00
* webproxy part 1 * fixed * Push to MyGet * WebProxy standalone * -n true * nuget --- "-n true" * AllowAutoRedirect * .
28 lines
508 B
C#
28 lines
508 B
C#
#if NETSTANDARD1_3
|
|
using System;
|
|
using System.Net;
|
|
|
|
namespace System.Net
|
|
{
|
|
internal class WebProxy : IWebProxy
|
|
{
|
|
private readonly string _proxy;
|
|
public ICredentials Credentials { get; set; }
|
|
|
|
public WebProxy(string proxy)
|
|
{
|
|
_proxy = proxy;
|
|
}
|
|
|
|
public Uri GetProxy(Uri destination)
|
|
{
|
|
return new Uri(_proxy);
|
|
}
|
|
|
|
public bool IsBypassed(Uri host)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
#endif |