IPAddress.None Pole
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Zawiera adres IP wskazujący, że nie należy używać interfejsu sieciowego. To pole jest tylko do odczytu.
public: static initonly System::Net::IPAddress ^ None;
public static readonly System.Net.IPAddress None;
staticval mutable None : System.Net.IPAddress
Public Shared ReadOnly None As IPAddress
Wartość pola
Przykłady
W poniższym przykładzie użyto właściwości , None aby wskazać, że nie należy używać interfejsu sieciowego.
int main()
{
// Gets the IP address indicating that no network interface should be used
// and converts it to a String*.
String^ address = IPAddress::None->ToString();
Console::WriteLine( "IP address : {0}", address );
}
public static void Main()
{
// Gets the IP address indicating that no network interface should be used
// and converts it to a string.
string address = IPAddress.None.ToString();
Console.WriteLine("IP address : " + address);
}
Public Shared Sub Main()
' Gets the IP address indicating that no network interface should be used
' and converts it to a string.
Dim address As String = IPAddress.None.ToString()
Console.WriteLine(("IP address : " + address))
End Sub
Uwagi
Metoda Socket.Bind używa pola, None aby wskazać, że działanie Socket klienta nie może nasłuchiwać. Pole None jest równoważne notacji 255.255.255.255 w notacji kropkowanej czworokątowej.