WebProxy.Address Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает или задает адрес прокси-сервера.
public:
property Uri ^ Address { Uri ^ get(); void set(Uri ^ value); };
public Uri? Address { get; set; }
public Uri Address { get; set; }
member this.Address : Uri with get, set
Public Property Address As Uri
Значение свойства
Экземпляр Uri, содержащий адрес прокси-сервера.
Примеры
В следующем примере кода отображаются свойства WebProxy объекта , включая его Address.
// The following method displays the properties of the
// specified WebProxy instance.
void DisplayProxyProperties( WebProxy^ proxy )
{
Console::WriteLine( "Address: {0}", proxy->Address );
Console::WriteLine( "Bypass on local: {0}", proxy->BypassProxyOnLocal );
int count = proxy->BypassList->Length;
if ( count == 0 )
{
Console::WriteLine( "The bypass list is empty." );
return;
}
array<String^>^bypass = proxy->BypassList;
Console::WriteLine( "The bypass list contents:" );
for ( int i = 0; i < count; i++ )
{
Console::WriteLine( bypass[ i ] );
}
}
// The following method displays the properties of the
// specified WebProxy instance.
public static void DisplayProxyProperties(WebProxy proxy)
{
Console.WriteLine("Address: {0}", proxy.Address);
Console.WriteLine( "Bypass on local: {0}", proxy.BypassProxyOnLocal );
int count = proxy.BypassList.Length;
if (count == 0)
{
Console.WriteLine("The bypass list is empty.");
return;
}
string[] bypass = proxy.BypassList;
Console.WriteLine("The bypass list contents:");
for (int i=0; i< count; i++)
{
Console.WriteLine(bypass[i]);
}
}
Комментарии
Свойство Address содержит адрес прокси-сервера. Если автоматическое обнаружение прокси-сервера не включено и скрипт автоматической настройки не указан, Address свойство и BypassList определите прокси-сервер, используемый для запроса.
Address Если свойство имеет значение null
, запросы обходят прокси-сервер и подключаются непосредственно к конечному узлу.