IPAddress.None フィールド

定義

IP アドレスを提供し、ネットワーク インターフェイスを使用しないことを示します。 このフィールドは読み取り専用です。

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 

フィールド値

次の例では、 プロパティを None 使用して、ネットワーク インターフェイスを使用する必要がないことを示します。

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

注釈

メソッドは Socket.Bind 、 フィールドを None 使用して、 がクライアント アクティビティを Socket リッスンしないように指定します。 フィールドは None 、ドット四角形表記の 255.255.255.255 に相当します。

適用対象