System.Net.CFNetwork.CFWebProxy.IsBypassed C# (CSharp) Method

IsBypassed() public method

public IsBypassed ( Uri targetUri ) : bool
targetUri Uri
return bool
			public bool IsBypassed (Uri targetUri)
			{
				if (targetUri == null)
					throw new ArgumentNullException ("targetUri");
				
				return GetProxy (targetUri) == targetUri;
			}
		}