Server/Services.cs
changeset 56 e86d84480b32
parent 55 b5ed2e29be23
child 57 544132d07c3b
     1.1 --- a/Server/Services.cs	Sun Sep 21 13:15:52 2014 +0200
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,32 +0,0 @@
     1.4 -using System;
     1.5 -using System.ServiceModel;
     1.6 -using System.Collections;
     1.7 -
     1.8 -
     1.9 -namespace SharpDisplayManager
    1.10 -{
    1.11 -    /*
    1.12 -    [ServiceContract(CallbackContract = typeof(IDisplayServiceCallback))]
    1.13 -    public interface IDisplayService
    1.14 -    {
    1.15 -        [OperationContract(IsOneWay = true)]
    1.16 -        void Connect(string aClientName);
    1.17 -
    1.18 -        [OperationContract(IsOneWay = true)]
    1.19 -        void SetText(int aLineIndex, string aText);
    1.20 -
    1.21 -        [OperationContract(IsOneWay = true)]
    1.22 -        void SetTexts(System.Collections.Generic.IList<string> aTexts);
    1.23 -    }
    1.24 -
    1.25 -
    1.26 -    public interface IDisplayServiceCallback
    1.27 -    {
    1.28 -        [OperationContract(IsOneWay = true)]
    1.29 -        void OnConnected();
    1.30 -
    1.31 -        [OperationContract(IsOneWay = true)]
    1.32 -        void OnServerClosing();
    1.33 -    }
    1.34 -     */
    1.35 -}