IService1.cs 466 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Runtime.Serialization;
  5. using System.ServiceModel;
  6. using System.Text;
  7. namespace AppliDeWS {
  8. // REMARQUE : vous pouvez utiliser la commande Renommer du menu Refactoriser pour changer le nom d'interface "IService1" à la fois dans le code et le fichier de configuration.
  9. [ServiceContract]
  10. public interface IService1 {
  11. [OperationContract]
  12. string DireBonjour( string nom );
  13. }
  14. }