/******************************************************************************* * Copyright(c) 2014 DongkeSoft All rights reserved. / Confidential * 类的信息: * 1.程序名称:ServiceProxyBase.cs * 2.功能描述:服务代理 * 编辑履历: * 作者 日期 版本 修改内容 * 陈晓野 2014/08/13 1.00 新建 *******************************************************************************/ namespace Dongke.IBOSS.PRD.WCF.Proxys.ServiceProxy { /// /// 服务代理 /// /// public abstract class ServiceProxyBase { /// /// 10days /// public const double OperationTimeout10d = 14400d; /// /// 服务操作者 /// public OperationInvoker Invoker { get; private set; } /// /// 服务代理 /// /// public ServiceProxyBase(string endpointname) { this.Invoker = new OperationInvoker(endpointname); } } }