IPAddress.Broadcast 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.
Udostępnia adres emisji IP. To pole jest tylko do odczytu.
public: static initonly System::Net::IPAddress ^ Broadcast;
public static readonly System.Net.IPAddress Broadcast;
staticval mutable Broadcast : System.Net.IPAddress
Public Shared ReadOnly Broadcast As IPAddress
Wartość pola
Przykłady
Poniższy przykład wyświetla Broadcast adres w konsoli programu .
void PrintBroadcastAddress()
{
// Get the IP Broadcast address and convert it to string.
String^ IpAddressString = IPAddress::Broadcast->ToString();
Console::WriteLine( "\nBroadcast IP address : {0}", IpAddressString );
}
public void PrintBroadcastAddress()
{
// Get the IP Broadcast address and convert it to string.
string ipAddressString = IPAddress.Broadcast.ToString();
Console.WriteLine("Broadcast IP address: {0}", ipAddressString);
}
Public Sub PrintBroadcastAddress()
' gets the IP Broadcast address and convert it to string.
Dim IpAddressString As [String] = IPAddress.Broadcast.ToString()
Console.WriteLine((ControlChars.Cr + "Broadcast IP address : " + IpAddressString))
End Sub
Uwagi
Pole Broadcast jest równoważne notacji czworokąta 255.255.255.255.
Dotyczy
Współpracuj z nami w serwisie GitHub
Źródło tej zawartości można znaleźć w witrynie GitHub, gdzie można również tworzyć i przeglądać problemy i żądania ściągnięcia. Więcej informacji znajdziesz w naszym przewodniku dla współtwórców.