Binding.EndPoint Property

Definition

Gets the IP endpoint of the binding.

public:
 property System::Net::IPEndPoint ^ EndPoint { System::Net::IPEndPoint ^ get(); };
public System.Net.IPEndPoint EndPoint { get; }
member this.EndPoint : System.Net.IPEndPoint
Public ReadOnly Property EndPoint As IPEndPoint

Property Value

A IPEndPoint object that represents a network endpoint.

Examples

The following example demonstrates the EndPoint property. This code example is part of a larger example provided for the Binding Class.

bindingdisplay = bindingdisplay + "\n   EndPoint: " + binding.EndPoint;

Remarks

The EndPoint property provides clients access to IIS. The EndPoint property represents an IP address and a port number.

Applies to