IPipeService.cs 328 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.ServiceModel;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace NamedPipe.Communication
  8. {
  9. [ServiceContract]
  10. internal interface IPipeService
  11. {
  12. [OperationContract]
  13. void RecieveMessage(String message);
  14. }
  15. }