Home > database >  System.ServiceModel.Discovery Missing?
System.ServiceModel.Discovery Missing?

Time:10-06

I need System.ServiceModel.Discovery, but it seems to be missing from all System.ServiceModel.XXX nuget packages. Do i need to reference an old package, or does the implementation lie elsewhere now?

I need it for WCF Discovery pattern, due to the UdpDiscoveryEndpoint() living inside. https://docs.microsoft.com/en-us/archive/msdn-magazine/2010/january/foundations-discover-a-new-wcf-with-discovery

CodePudding user response:

Maybe you need add a reference to the System.ServiceModel.Discovery. Select Project-> Add Reference ,then select the name you need.

Thanks.

  • Related