IPEndPoint.MinPort フィールド
Port プロパティに割り当てることができる最小値を指定します。このフィールドは読み取り専用です。
Public Const MinPort As Integer
[C#]
public const int MinPort;
[C++]
public: const int MinPort;
[JScript]
public var MinPort : int;
使用例
[Visual Basic, C#, C++] MinPort プロパティを使用して、 Port プロパティに割り当てることができる最小値を出力する例を次に示します。
Dim hostIPAddress1 As IPAddress = Dns.Resolve(hostString1).AddressList(0)
Dim hostIPEndPoint As New IPEndPoint(hostIPAddress1, 80)
Console.WriteLine((ControlChars.Cr + "IPEndPoint information:" + hostIPEndPoint.ToString()))
Console.WriteLine((ControlChars.Cr + ControlChars.Tab + "Maximum allowed Port Address :" + IPEndPoint.MaxPort.ToString()))
Console.WriteLine((ControlChars.Cr + ControlChars.Tab + "Minimum allowed Port Address :" + IPEndPoint.MinPort.ToString()))
Console.WriteLine((ControlChars.Cr + ControlChars.Tab + "Address Family :" + hostIPEndPoint.AddressFamily.ToString()))
[C#]
IPAddress hostIPAddress1 = (Dns.Resolve(hostString1)).AddressList[0];
Console.WriteLine(hostIPAddress1.ToString());
IPEndPoint hostIPEndPoint = new IPEndPoint(hostIPAddress1,80);
Console.WriteLine("\nIPEndPoint information:" + hostIPEndPoint.ToString());
Console.WriteLine("\n\tMaximum allowed Port Address :" + IPEndPoint.MaxPort);
Console.WriteLine("\n\tMinimum allowed Port Address :" + IPEndPoint.MinPort);
Console.WriteLine("\n\tAddress Family :" + hostIPEndPoint.AddressFamily);
[C++]
IPAddress* hostIPAddress1 = (Dns::Resolve(hostString1))->AddressList[0];
Console::WriteLine(hostIPAddress1);
IPEndPoint* hostIPEndPoint = new IPEndPoint(hostIPAddress1,80);
Console::WriteLine(S"\nIPEndPoint information:{0}", hostIPEndPoint);
Console::WriteLine(S"\n\tMaximum allowed Port Address :{0}", __box(IPEndPoint::MaxPort));
Console::WriteLine(S"\n\tMinimum allowed Port Address :{0}", __box(IPEndPoint::MinPort));
Console::WriteLine(S"\n\tAddress Family :{0}", __box(hostIPEndPoint->AddressFamily));
[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 ファミリ, .NET Compact Framework - Windows CE .NET, Common Language Infrastructure (CLI) Standard