Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/11/08 16:53:26 (16 years ago)
Author:
whackl
Message:

added logic to client console (#397)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Client.Console/Service References/ClientService/Reference.cs

    r954 r973  
    325325        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IClientConsoleCommunicator/Disconnect", ReplyAction="http://tempuri.org/IClientConsoleCommunicator/DisconnectResponse")]
    326326        void Disconnect();
     327       
     328        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IClientConsoleCommunicator/GetCurrentConnection", ReplyAction="http://tempuri.org/IClientConsoleCommunicator/GetCurrentConnectionResponse")]
     329        HeuristicLab.Hive.Client.Console.ClientService.ConnectionContainer GetCurrentConnection();
    327330    }
    328331   
     
    369372            base.Channel.Disconnect();
    370373        }
     374       
     375        public HeuristicLab.Hive.Client.Console.ClientService.ConnectionContainer GetCurrentConnection() {
     376            return base.Channel.GetCurrentConnection();
     377        }
    371378    }
    372379}
Note: See TracChangeset for help on using the changeset viewer.