62,271
社区成员
发帖
与我相关
我的任务
分享
#region 私有字段
private string _username;
private string _time;
private string _threeParam;
/// <summary>
/// 用户
/// </summary>
public string UserName
{
get { return _username; }
set { this._username = UserName; }
}
/// <summary>
/// 时间戳
/// </summary>
public string Time
{
get { return _time; }
set { this._time = Time; }
}
/// <summary>
/// 用户名+密码+时间戳+'HUAKE' (MD5码)
/// </summary>
public string ThreeParam
{
get { return _threeParam; }
set { this._threeParam = ThreeParam; }
}
#endregion
[WebMethod(Description="验证是否为会员")]
public void GetWetSevc(string username, string time, string threeParam)
{
this._username = username;
this._time = time;
this._threeParam = threeParam;
return new MeetingWebSevc();
}