IPAddress.Loopback Champ
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.
Fournit l'adresse de bouclage IP. Ce champ est en lecture seule.
public: static initonly System::Net::IPAddress ^ Loopback;
public static readonly System.Net.IPAddress Loopback;
staticval mutable Loopback : System.Net.IPAddress
Public Shared ReadOnly Loopback As IPAddress
Valeur de champ
Exemples
L’exemple suivant imprime l’adresse Loopback dans la console.
void PrintLoopbackAddress()
{
// Gets the IP loopback address and converts it to a string.
String^ IpAddressString = IPAddress::Loopback->ToString();
Console::WriteLine( "Loopback IP address : {0}", IpAddressString );
}
public void PrintLoopbackAddress()
{
// Gets the IP loopback address and converts it to a string.
String IpAddressString = IPAddress.Loopback.ToString();
Console.WriteLine("Loopback IP address : " + IpAddressString);
}
Public Sub PrintLoopbackAddress()
' Gets the IP loopback address and converts it to a string.
Dim IpAddressString As [String] = IPAddress.Loopback.ToString()
Console.WriteLine(("Loopback IP address : " + IpAddressString))
End Sub
Remarques
Le Loopback champ équivaut à 127.0.0.1 en notation à quad pointillé.
S’applique à
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.