Exemplo n.º 1
0
        private async Task <string> AppelerServiceSOAPCSharp(string nom)
        {
            string            message = "";
            SoapServiceClient client  = new SoapServiceClient();

            message = await client.HelloWorldAsync(nom);

            await client.CloseAsync();

            return(message);
        }