I wrote a simple WCF service, and when I debug the project, I get a WCF client window in which each utility method has a version of async () (for example, for the ConnectMessages () method from the service, there is a new GetMessagesAsync () method. However, asynchronous methods are shaded and marked with a red “x” and have the following heading:
This operation is not supported in the wcf test client because it uses system.threading.tasks.task
my questions are: why does each method have an asynchronous version and why are these asynchronous devices marked as broken? what does it mean?
source
share