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.
sl@17
     1
using System;
sl@17
     2
using System.ServiceModel;
sl@19
     3
using System.Collections;
sl@17
     4
sl@17
     5
namespace SharpDisplayManager
sl@17
     6
{
sl@17
     7
    [ServiceContract]
sl@17
     8
    public interface IDisplayService
sl@17
     9
    {
sl@17
    10
        [OperationContract]
sl@17
    11
        void SetText(int aLineIndex, string aText);
sl@19
    12
sl@19
    13
        [OperationContract]
sl@19
    14
        void SetTexts(System.Collections.Generic.IList<string> aTexts);
sl@17
    15
    }
sl@17
    16
}