一. 基本思路 using System; 文件来自:http://www.cnblogs.com/guozhijian/archive/2008/01/25/1052802.htmlusing System.Collections.Generic; using System.Linq; using System.Text; using System.ServiceModel; namespace WendyFinance.UpdateCenter.Contract { [ServiceContract] public interface IAutoUpdate { [OperationContract] bool CheckUpdate(string clientVersion); [OperationContract] string GetCurrentVersion(); [OperationContract] string GetUpdateDescription(); [OperationContract] List<string> GetFileList(); [OperationContract] string GetFile(string fileName); } } |