IPEndPoint Port
In this chapter you will learn:
Set Port for an IPEndPoint
using System;// j a v a 2s .co m
using System.Net;
class MainClass
{
public static void Main()
{
IPAddress test1 = IPAddress.Parse("192.168.1.1");
IPEndPoint ie = new IPEndPoint(test1, 8000);
ie.Port = 80;
Console.WriteLine("The changed IPEndPoint value is: {0}", ie.ToString());
}
}
The code above generates the following result.
IPEndPoint: MinPort and MaxPort
using System;/* jav a 2 s . c o m*/
using System.Net;
class MainClass
{
public static void Main()
{
Console.WriteLine("The min port number is: {0}", IPEndPoint.MinPort);
Console.WriteLine("The max port number is: {0}\n", IPEndPoint.MaxPort);
}
}
The code above generates the following result.
Next chapter...
What you will learn in the next chapter:
Home » C# Tutorial » Network