You've already forked linux-packaging-mono
48 lines
1.3 KiB
C#
48 lines
1.3 KiB
C#
|
|
//------------------------------------------------------------------------------
|
||
|
|
// <copyright file="_emptywebproxy.cs" company="Microsoft">
|
||
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
|
// </copyright>
|
||
|
|
//------------------------------------------------------------------------------
|
||
|
|
|
||
|
|
namespace System.Net
|
||
|
|
{
|
||
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
[Serializable]
|
||
|
|
internal sealed class EmptyWebProxy : IAutoWebProxy {
|
||
|
|
|
||
|
|
[NonSerialized]
|
||
|
|
private ICredentials m_credentials;
|
||
|
|
|
||
|
|
public EmptyWebProxy() {
|
||
|
|
}
|
||
|
|
|
||
|
|
//
|
||
|
|
// IWebProxy interface
|
||
|
|
//
|
||
|
|
public Uri GetProxy(Uri uri) {
|
||
|
|
// this method won't get called by NetClasses because of the IsBypassed test below
|
||
|
|
return uri;
|
||
|
|
}
|
||
|
|
public bool IsBypassed(Uri uri) {
|
||
|
|
return true; // no proxy, always bypasses
|
||
|
|
}
|
||
|
|
public ICredentials Credentials {
|
||
|
|
get {
|
||
|
|
return m_credentials;
|
||
|
|
}
|
||
|
|
set {
|
||
|
|
m_credentials = value; // doesn't do anything, but doesn't break contract either
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
//
|
||
|
|
// IAutoWebProxy interface
|
||
|
|
//
|
||
|
|
ProxyChain IAutoWebProxy.GetProxies(Uri destination)
|
||
|
|
{
|
||
|
|
return new DirectProxy(destination);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|