IPEndPoint from IPAddress

In this chapter you will learn:

  1. How to Create IPEndPoint from IPAddress

Create IPEndPoint from IPAddress

using System;/*from  j  av  a2 s .c o m*/
using System.Net;


class MainClass
{
    public static void Main()
    {
        IPAddress test1 = IPAddress.Parse("192.168.1.1");
      IPEndPoint ie = new IPEndPoint(test1, 8000);
    
      Console.WriteLine("The IPEndPoint is: {0}", ie.ToString());
      Console.WriteLine("The AddressFamily is: {0}", ie.AddressFamily);
      Console.WriteLine("The address is: {0}, and the port is: {1}", ie.Address, ie.Port);
    
    }
}

The code above generates the following result.

Next chapter...

What you will learn in the next chapter:

  1. How to Set Port for an IPEndPoint
  2. How to find out the Min Port and Max Port for IPEndPoint
Home » C# Tutorial » Network
Cookie
CredentialCache
HostEntry
IPHostEntry
IP address from host name
IPEndPoint from IPAddress
IPEndPoint Port
IPEndPoint properties
IPHostEntry
IP Address Parser
Predefined IP Address
NetworkCredential
Ping
Udp Client
Socket connection
Socket creation
Socket sendTo
TcpClient
TcpListener
UdpClient Receive
UdpClient Sending
Uri
WebClient
Response Headers
WebProxy
WebRequest