DocSpace-client/thirdparty/AppLimit.CloudComputing.SharpBox/Common/Net/Web/WebRequestManagerNullProxy.cs
2020-03-13 16:40:58 +03:00

24 lines
590 B
C#

using System;
using System.Net;
namespace AppLimit.CloudComputing.SharpBox.Common.Net.Web
{
internal class WebRequestManagerNullProxy : IWebProxy
{
public ICredentials Credentials
{
get { throw new NotImplementedException(); }
set { throw new NotImplementedException(); }
}
public Uri GetProxy(Uri destination)
{
throw new NotImplementedException();
}
public bool IsBypassed(Uri host)
{
throw new NotImplementedException();
}
}
}