WebProxy.BypassList Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit un tableau d’adresses qui n’utilisent pas le serveur proxy.
public:
property cli::array <System::String ^> ^ BypassList { cli::array <System::String ^> ^ get(); void set(cli::array <System::String ^> ^ value); };
public string[] BypassList { get; set; }
member this.BypassList : string[] with get, set
Public Property BypassList As String()
Valeur de propriété
Tableau qui contient une liste d'expressions régulières qui décrivent les URI qui n'utilisent pas le serveur proxy lorsque vous y accédez.
Exemples
L’exemple de code suivant affiche les propriétés d’un WebProxy objet, y compris sa BypassList propriété.
// 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]);
}
}
Remarques
La BypassList propriété contient un tableau d’expressions régulières qui décrivent des URI accessibles directement au lieu du serveur proxy.