次の方法で共有


IPAddress.IPv6Any フィールド

メモ : この名前空間、クラス、およびメンバは、.NET Framework Version 1.1 だけでサポートされています。

Socket.Bind メソッドは、 IPv6Any フィールドを使用して、 Socket が、すべてのネットワーク インターフェイスでクライアントによるネットワーク利用を待機する必要があることを示します。

Public Shared ReadOnly IPv6Any As IPAddress
[C#]
public static readonly IPAddress IPv6Any;
[C++]
public: static IPAddress* IPv6Any;
[JScript]
public static var IPv6Any : IPAddress;

解説

IPv6Any フィールドは、コロン区切りの 16 進表記で 0:0:0:0:0:0:0:0 と等しくなります。簡単な表記では:: になります。

使用例

[Visual Basic, C#, C++] 標準の圧縮形式で現在のホストのすべてのアドレスの値を表示する例を示します。

 
' This function prints the value of the current host's Any address in  
' standard compressed format. The Any address is used by the host to enable
' listening to client activities on all the interfaces for a given port.
Private Shared Sub printIPv6AnyAddress()
   Try
      ' Get the Any address.
      Dim any As IPAddress = IPAddress.IPv6Any
      
      ' Transform the Any address to a string using the overladed
      ' ToString() method. Note that the resulting string is in the compact 
      ' form: "::".
      Dim ipv6Any As String = any.ToString()
      
      ' Display the Any address.
      Console.WriteLine(("The IPv6 Any address is: " + ipv6Any))
   Catch e As Exception
      Console.WriteLine(("[printIPv6AnyAddress] Exception: " + e.ToString()))
   End Try
End Sub 'printIPv6AnyAddress


[C#] 
// This method displays the value of the current host's Any address in  
// standard compressed format. The Any address is used by the host to enable
// listening to client activities on all the interfaces for a given port.
private static void displayIPv6AnyAddress()
{
  try
  {
    // Get the Any address.
    IPAddress any = IPAddress.IPv6Any;

    // Transform the Any address to a string using the overloaded
    // ToString() method. Note that the resulting string is in the compact 
    // form: "::".
    string ipv6Any = any.ToString();
    
    // Display the Any address.
    Console.WriteLine("The IPv6 Any address is: " + ipv6Any);
  }
  catch (Exception e) 
  {
    Console.WriteLine("[displayIPv6AnyAddress] Exception: " + e.ToString());
  }
}

[C++] 
// This method displays the value of the current host's Any address in
// standard compressed format. The Any address is used by the host to enable
// listening to client activities on all the interfaces for a given port.
void displayIPv6AnyAddress() {
   try {
      // Get the Any address.
      IPAddress* any = IPAddress::IPv6Any;

      // Transform the Any address to a string using the overloaded
      // ToString() method. Note that the resulting string is in the compact
      // form: "::".
      String* ipv6Any = any->ToString();

      // Display the Any address.
      Console::WriteLine(S"The IPv6 Any address is: {0}", ipv6Any);
   } catch (Exception* e) {
      Console::WriteLine(S"->Item[displayIPv6AnyAddress] Exception: {0}", e);
   }
}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

IPAddress クラス | IPAddress メンバ | System.Net 名前空間