You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.3 KiB
59 lines
1.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace SiaSun.LMS.WCFHost.ServiceModel
|
|
{
|
|
public class WCFService
|
|
{
|
|
string _name;
|
|
string _status;
|
|
string _address;
|
|
string _message;
|
|
|
|
/// <summary>
|
|
/// 服务名
|
|
/// </summary>
|
|
public string WCFServiceName
|
|
{
|
|
get { return _name; }
|
|
set { _name = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 服务状态
|
|
/// </summary>
|
|
public string WCFServiceStatus
|
|
{
|
|
get { return _status; }
|
|
set { _status = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 服务地址
|
|
/// </summary>
|
|
public string WCFServiceAddress
|
|
{
|
|
get { return _address; }
|
|
set { _address = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 服务消息
|
|
/// </summary>
|
|
public string Message
|
|
{
|
|
get { return _message; }
|
|
set { _message = value; }
|
|
}
|
|
|
|
public WCFService(string _Name, string _Status, string _Address, string _Message)
|
|
{
|
|
this._name = _Name;
|
|
this._status = _Status;
|
|
this._address = _Address;
|
|
this._message = _Message;
|
|
}
|
|
}
|
|
}
|