All WCF Communications Service Runs Through Endpoints . It gives customers access to the features provided by WCF.
Each endpoint has three properties:
- Address (where)
- Binding (how)
- Contract (what)
Endpoints can also have a set of rules that define local implementation details. endpoints exist for both clients and services: WCF services can provide multiple endpoints, and a client can communicate with services with multiple endpoints.
Can someone explain this definition to me? Is the endpoint application the same as the link to the service created by Visual Studio?
When you add a service link, Visual Studio will add a new client endpoint to your application (check the updated configuration file). However, Visual Studio will attempt to download metadata first to list all available endpoints for the address.
source share