IPv4InterfaceProperties クラス
アセンブリ: System (system.dll 内)


このクラスは、IPv4 をサポートするネットワーク インターフェイスの構成情報とアドレス情報へのアクセスを提供します。このクラスのインスタンスを作成する必要はありません。インスタンスは、GetIPv4Properties メソッドによって返されます。

GetIPv4Properties オブジェクトを取得して、そのデータを表示するコード例を次に示します。
Public Shared Sub DisplayIPv4NetworkInterfaces() Dim nics As NetworkInterface() = NetworkInterface.GetAllNetworkInterfaces() Dim properties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties() Console.WriteLine("IPv4 interface information for {0}.{1}", properties.HostName, properties.DomainName) Dim adapter As NetworkInterface For Each adapter In nics ' Only display informatin for interfaces that support IPv4. If adapter.Supports(NetworkInterfaceComponent.IPv4) = False Then GoTo ContinueForEach1 End If Console.WriteLine() Console.WriteLine(adapter.Description) ' Underline the description. Console.WriteLine(String.Empty.PadLeft(adapter.Description.Length, "="c)) Dim adapterProperties As IPInterfaceProperties = adapter.GetIPProperties() ' Try to get the IPv4 interface properties. Dim p As IPv4InterfaceProperties = adapterProperties.GetIPv4Properties() If p Is Nothing Then Console.WriteLine("No IPv4 information is available for this interface.") GoTo ContinueForEach1 End If ' Display the IPv4 specific data. Console.WriteLine(" Index ............................. : {0}", p.Index) Console.WriteLine(" MTU ............................... : {0}", p.Mtu) Console.WriteLine(" APIPA active....................... : {0}", p.IsAutomaticPrivateAddressingActive) Console.WriteLine(" APIPA enabled...................... : {0}", p.IsAutomaticPrivateAddressingEnabled) Console.WriteLine(" Forwarding enabled................. : {0}", p.IsForwardingEnabled) Console.WriteLine(" Uses WINS ......................... : {0}", p.UsesWins) ContinueForEach1: Next adapter End Sub 'DisplayIPv4NetworkInterfaces
public static void DisplayIPv4NetworkInterfaces() { NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces(); IPGlobalProperties properties = IPGlobalProperties.GetIPGlobalProperties(); Console.WriteLine("IPv4 interface information for {0}.{1}" , properties.HostName, properties.DomainName); foreach (NetworkInterface adapter in nics) { // Only display informatin for interfaces that support IPv4. if (adapter.Supports(NetworkInterfaceComponent.IPv4) == false) { continue; } Console.WriteLine(); Console.WriteLine(adapter.Description); // Underline the description. Console.WriteLine(String.Empty.PadLeft(adapter.Description.Length,'=')); IPInterfaceProperties adapterProperties = adapter.GetIPProperties(); // Try to get the IPv4 interface properties. IPv4InterfaceProperties p = adapterProperties.GetIPv4Properties(); if (p == null) { Console.WriteLine("No IPv4 information is available for this interface."); continue; } // Display the IPv4 specific data. Console.WriteLine(" Index ............................. : {0}", p.Index); Console.WriteLine(" MTU ............................... : {0}", p.Mtu); Console.WriteLine(" APIPA active....................... : {0}", p.IsAutomaticPrivateAddressingActive); Console.WriteLine(" APIPA enabled...................... : {0}", p.IsAutomaticPrivateAddressingEnabled); Console.WriteLine(" Forwarding enabled................. : {0}", p.IsForwardingEnabled); Console.WriteLine(" Uses WINS ......................... : {0}", p.UsesWins); } }

System.Net.NetworkInformation.IPv4InterfaceProperties


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


IPv4InterfaceProperties コンストラクタ
アセンブリ: System (system.dll 内)



Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


IPv4InterfaceProperties プロパティ

名前 | 説明 | |
---|---|---|
![]() | Index | インターネット プロトコル Version 4 (IPv4) アドレスのインターフェイス インデックスを取得します。 |
![]() | IsAutomaticPrivateAddressingActive | このインターフェイスに自動プライベート IP アドレス指定 (APIPA) のアドレスがあるかどうかを示す Boolean 値を取得します。 |
![]() | IsAutomaticPrivateAddressingEnabled | このインターフェイスで自動プライベート IP アドレス指定 (APIPA) が有効になっているかどうかを示す Boolean 値を取得します。 |
![]() | IsDhcpEnabled | インターフェイスが DHCP (Dynamic Host Configuration Protocol) サーバーを使用して IP アドレスを取得するように構成されているかどうかを示す Boolean 値を取得します。 |
![]() | IsForwardingEnabled | このインターフェイスがパケットを転送 (ルーティング) できるかどうかを示す Boolean 値を取得します。 |
![]() | Mtu | このネットワーク インターフェイスの最大 MTU (Maximum Transmission Unit) を取得します。 |
![]() | UsesWins | インターフェイスが WINS (Windows Internet Name Service) を使用するかどうかを示す Boolean 値を取得します。 |

IPv4InterfaceProperties メソッド

名前 | 説明 | |
---|---|---|
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 ( Object から継承されます。) |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 ( Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 ( Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 ( Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 ( Object から継承されます。) |

IPv4InterfaceProperties メンバ
インターネット プロトコル Version 4 (IPv4) をサポートしているネットワーク インターフェイスに関する情報を提供します。
IPv4InterfaceProperties データ型で公開されるメンバを以下の表に示します。


名前 | 説明 | |
---|---|---|
![]() | Index | インターネット プロトコル Version 4 (IPv4) アドレスのインターフェイス インデックスを取得します。 |
![]() | IsAutomaticPrivateAddressingActive | このインターフェイスに自動プライベート IP アドレス指定 (APIPA) のアドレスがあるかどうかを示す Boolean 値を取得します。 |
![]() | IsAutomaticPrivateAddressingEnabled | このインターフェイスで自動プライベート IP アドレス指定 (APIPA) が有効になっているかどうかを示す Boolean 値を取得します。 |
![]() | IsDhcpEnabled | インターフェイスが DHCP (Dynamic Host Configuration Protocol) サーバーを使用して IP アドレスを取得するように構成されているかどうかを示す Boolean 値を取得します。 |
![]() | IsForwardingEnabled | このインターフェイスがパケットを転送 (ルーティング) できるかどうかを示す Boolean 値を取得します。 |
![]() | Mtu | このネットワーク インターフェイスの最大 MTU (Maximum Transmission Unit) を取得します。 |
![]() | UsesWins | インターフェイスが WINS (Windows Internet Name Service) を使用するかどうかを示す Boolean 値を取得します。 |

名前 | 説明 | |
---|---|---|
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 (Object から継承されます。) |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 (Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 (Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 (Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 (Object から継承されます。) |

Weblioに収録されているすべての辞書からIPv4InterfacePropertiesを検索する場合は、下記のリンクをクリックしてください。

- IPv4InterfacePropertiesのページへのリンク