DocSpace-client/thirdparty/AppLimit.CloudComputing.SharpBox/Common/Net/Web/WebRequestManagerNullProxy.cs

24 lines
590 B
C#
Raw Normal View History

2020-03-13 13:40:58 +00:00
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();
}
}
}