1 write to Address
System.Net.WebProxy (1)
System\Net\WebProxy.cs (1)
71this.Address = Address;
5 references to Address
System.Net.WebProxy (5)
System\Net\WebProxy.cs (5)
33/// The parameterless constructor initializes an empty instance of the <see cref="WebProxy"/> class with the <see cref="Address"/> property set to <see langword="null"/>. 36/// When the <see cref="Address"/> property is <see langword="null"/>, the <see cref="IsBypassed"/> method returns <see langword="true"/> and the <see cref="GetProxy"/> method returns the destination address. 88/// The <see cref="WebProxy"/> instance is initialized with the <see cref="Address"/> property set to a <see cref="Uri"/> instance of the form <c>http://</c><paramref name="Host"/><c>:</c><paramref name="Port"/>. 224return IsBypassed(destination) ? destination : Address; 327Address == null ||