IPEndPoint Oluşturucular
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
IPEndPoint sınıfının yeni bir örneğini başlatır.
Aşırı Yüklemeler
IPEndPoint(Int64, Int32) |
Belirtilen adres ve bağlantı noktası numarasıyla sınıfının yeni bir örneğini IPEndPoint başlatır. |
IPEndPoint(IPAddress, Int32) |
Belirtilen adres ve bağlantı noktası numarasıyla sınıfının yeni bir örneğini IPEndPoint başlatır. |
IPEndPoint(Int64, Int32)
- Kaynak:
- IPEndPoint.cs
- Kaynak:
- IPEndPoint.cs
- Kaynak:
- IPEndPoint.cs
Belirtilen adres ve bağlantı noktası numarasıyla sınıfının yeni bir örneğini IPEndPoint başlatır.
public:
IPEndPoint(long address, int port);
public IPEndPoint (long address, int port);
new System.Net.IPEndPoint : int64 * int -> System.Net.IPEndPoint
Public Sub New (address As Long, port As Integer)
Parametreler
- address
- Int64
İnternet ana bilgisayarının IP adresi. Örneğin, büyük endian biçiminde 0x2414188f değeri "143.24.20.36" IP adresi olabilir.
- port
- Int32
Kullanılabilir herhangi bir bağlantı noktasını belirtmek için , veya 0 ile address
ilişkili bağlantı noktası numarası.
port
konak sırasına göredir.
Özel durumlar
port
değerinden küçüktür MinPort.
-veya-
port
değerinden büyüktür MaxPort.
-veya-
address
0'dan küçük veya 0x00000000FFFFFFFF'den büyük.
Örnekler
Aşağıdaki örnek, oluşturmak IPEndPointiçin belirtilen IP adresini ve bağlantı noktası numarasını kullanır.
IPAddress^ hostIPAddress1 = (Dns::Resolve( hostString1 ))->AddressList[ 0 ];
Console::WriteLine( hostIPAddress1 );
IPEndPoint^ hostIPEndPoint = gcnew IPEndPoint( hostIPAddress1,80 );
Console::WriteLine( "\nIPEndPoint information:{0}", hostIPEndPoint );
Console::WriteLine( "\n\tMaximum allowed Port Address :{0}", IPEndPoint::MaxPort );
Console::WriteLine( "\n\tMinimum allowed Port Address :{0}", (int^)IPEndPoint::MinPort );
Console::WriteLine( "\n\tAddress Family :{0}", hostIPEndPoint->AddressFamily );
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);
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()))
Şunlara uygulanır
IPEndPoint(IPAddress, Int32)
- Kaynak:
- IPEndPoint.cs
- Kaynak:
- IPEndPoint.cs
- Kaynak:
- IPEndPoint.cs
Belirtilen adres ve bağlantı noktası numarasıyla sınıfının yeni bir örneğini IPEndPoint başlatır.
public:
IPEndPoint(System::Net::IPAddress ^ address, int port);
public IPEndPoint (System.Net.IPAddress address, int port);
new System.Net.IPEndPoint : System.Net.IPAddress * int -> System.Net.IPEndPoint
Public Sub New (address As IPAddress, port As Integer)
Parametreler
- port
- Int32
Kullanılabilir herhangi bir bağlantı noktasını belirtmek için , veya 0 ile address
ilişkili bağlantı noktası numarası.
port
konak sırasına göredir.
Özel durumlar
address
, null
değeridir.
Örnekler
// Obtain the IP address from the list of IP addresses associated with the server.
System::Collections::IEnumerator^ myEnum = host->AddressList->GetEnumerator();
while ( myEnum->MoveNext() )
{
IPAddress^ address = safe_cast<IPAddress^>(myEnum->Current);
IPEndPoint^ endpoint = gcnew IPEndPoint( address,port );
tempSocket = gcnew Socket( endpoint->AddressFamily,SocketType::Stream,ProtocolType::Tcp );
tempSocket->Connect( endpoint );
if ( tempSocket->Connected )
{
// Display the endpoint information.
displayEndpointInfo( endpoint );
// Serialize the endpoint to obtain a SocketAddress object.
serializedSocketAddress = serializeEndpoint( endpoint );
break;
}
else
continue;
}
// Obtain the IP address from the list of IP addresses associated with the server.
foreach(IPAddress address in host.AddressList)
{
IPEndPoint endpoint = new IPEndPoint(address, port);
tempSocket =
new Socket(endpoint.AddressFamily, SocketType.Stream, ProtocolType.Tcp);
tempSocket.Connect(endpoint);
if(tempSocket.Connected)
{
// Display the endpoint information.
displayEndpointInfo(endpoint);
// Serialize the endpoint to obtain a SocketAddress object.
serializedSocketAddress = serializeEndpoint(endpoint);
break;
}
else
{
continue;
}
}
' Obtain the IP address from the list of IP addresses associated with the server.
Dim address As IPAddress
For Each address In host.AddressList
Dim endpoint As New IPEndPoint(address, port)
tempSocket = New Socket(endpoint.AddressFamily, SocketType.Stream, ProtocolType.Tcp)
tempSocket.Connect(endpoint)
If tempSocket.Connected Then
' Display the endpoint information.
displayEndpointInfo(endpoint)
' Serialize the endpoint to obtain a SocketAddress object.
serializedSocketAddress = serializeEndpoint(endpoint)
Exit For
End If
Next address