Server/Services.cs
author sl
Tue, 12 Aug 2014 21:27:35 +0200
changeset 19 1a85ec255882
parent 18 7acec5059fa6
child 20 e3d394dd0388
permissions -rw-r--r--
Adding server method to set all texts at once.
     1 using System;
     2 using System.ServiceModel;
     3 using System.Collections;
     4 
     5 namespace SharpDisplayManager
     6 {
     7     [ServiceContract]
     8     public interface IDisplayService
     9     {
    10         [OperationContract]
    11         void SetText(int aLineIndex, string aText);
    12 
    13         [OperationContract]
    14         void SetTexts(System.Collections.Generic.IList<string> aTexts);
    15     }
    16 }