//----------------------------------------------------------------
//Module Name: IServiceProxy
//Purpose:
//CopyRight: Muchinfo
//History:
//----------------------------------------------------------------
//DateTime Author Description
//----------------------------------------------------------------
//2014-03-21 deng.yinping Create
//----------------------------------------------------------------
namespace Muchinfo.MTPClient.Data.Interfaces
{
public interface IServiceProxy
{
///
/// 终结点地址
///
string EndpointAddress { get; }
///
/// 对象释放
///
void Dispose();
/////
///// 客户代理状态
/////
//CommunicationState ClientState { get; }
/////
///// 服务终节点
/////
//ServiceEndpoint Endpoint { get; }
///
/// ip地址,如:192.168.30.50:4688
///
string IPAddress { get; }
///
/// Client是否在线
///
/// true if this instance is online; otherwise, false.
bool IsOnline();
///
/// 链路 组名
///
string GroupName { get; set; }
}
}