Reputation: 70307
I can add endpoints using ServiceHost.AddServiceEndpoint. How do I get that list of endpoints back out?
ServiceHost.AddServiceEndpoint
Upvotes: 45
Views: 16735
Reputation: 118865
Use host.Description.Endpoints
host.Description.Endpoints
Upvotes: 81