Hi @Kmcnet
Use this method to instantiate the client
ServiceReference1.Service1Client client = new ServiceReference1.Service1Client();
await client.Yourmethod();
ServiceReference1: ServiceReference1 is namespace. In your project is WENOTesting.
Service1Client: Service1 is the name of the service.
At the same time, there are some changes that need to be made, let me give you an example:
public string GetData(int value)
{
return string.Format("You entered: {0}", value);
}
In the service I have a GetData method, but in your project you have to call it like this:
string str = await client.GetDataAsync(2);

Best Regards
Qi You
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.