IPAddress.IPv6Loopback Feld
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Stellt die IP-Loopback-Adresse bereit. Diese Eigenschaft ist schreibgeschützt.
public: static initonly System::Net::IPAddress ^ IPv6Loopback;
public static readonly System.Net.IPAddress IPv6Loopback;
staticval mutable IPv6Loopback : System.Net.IPAddress
Public Shared ReadOnly IPv6Loopback As IPAddress
Feldwert
Beispiele
Im folgenden Codebeispiel wird der Wert der Loopbackadresse des aktuellen Hosts im komprimierten Standardformat angezeigt.
// This method displays the value of the current host loopback address in
// standard compressed format.
void displayIPv6LoopBackAddress()
{
try
{
// Get the loopback address.
IPAddress^ loopBack = IPAddress::IPv6Loopback;
// Transform the loop-back address to a string using the overladed
// ToString() method. Note that the resulting string is in the compact
// form: "::1".
String^ ipv6LoopBack = loopBack->ToString();
Console::WriteLine( "The IPv6 Loopback address is: {0}", ipv6LoopBack );
}
catch ( Exception^ e )
{
Console::WriteLine( "->Item[displayIPv6LoopBackAddress] Exception: {0}", e );
}
}
// This method displays the value of the current host loopback address in
// standard compressed format.
private static void displayIPv6LoopBackAddress()
{
try
{
// Get the loopback address.
IPAddress loopBack = IPAddress.IPv6Loopback;
// Transform the loop-back address to a string using the overladed
// ToString() method. Note that the resulting string is in the compact
// form: "::1".
string ipv6LoopBack = loopBack.ToString();
Console.WriteLine("The IPv6 Loopback address is: " + ipv6LoopBack);
}
catch (Exception e)
{
Console.WriteLine("[displayIPv6LoopBackAddress] Exception: " + e.ToString());
}
}
' This methods prints the value of the current host loopback address in
' standard compressed format.
Private Shared Sub printIPv6LoopBackAddress()
Try
' Get the loopback address.
Dim loopBack As IPAddress = IPAddress.IPv6Loopback
' Transform the loop-back address to a string using the overloaded
' ToString() method. Note that the resulting string is in the compact
' form: "::1".
Dim ipv6LoopBack As String = loopBack.ToString()
Console.WriteLine(("The IPv6 Loopback address is: " + ipv6LoopBack))
Catch e As Exception
Console.WriteLine(("[printIPv6LoopBackAddress] Exception: " + e.ToString()))
End Try
End Sub
Hinweise
Das IPv6Loopback Feld entspricht 0:0:0:0:0:0:0:0:0:1 in der Doppelpunkt-Hexadezimalnotation oder ::1 in kompakter Notation.