飞信的收发使用csharp进行开发
源代码在线查看: message.cs
namespace Imps.Client.Pc
{
using Imps.Client.Core;
using System;
public class Message
{
private string _content;
private string _date;
private string _from;
private string _fromUri;
private string _messageId;
private Contact _ownerContact;
private string _time;
private string _to;
public string Content
{
get
{
return this._content;
}
set
{
this._content = value;
}
}
public string Date
{
get
{
return this._date;
}
set
{
this._date = value;
}
}
public string From
{
get
{
return this._from;
}
set
{
this._from = value;
}
}
public string FromUri
{
get
{
return this._fromUri;
}
set
{
this._fromUri = value;
}
}
public string MessageId
{
get
{
return this._messageId;
}
set
{
this._messageId = value;
}
}
public DateTime MsgDateTime
{
get
{
try
{
DateTime time;
if (DateTime.TryParse(this._date + " " + this._time, out time))
{
return time;
}
}
catch (Exception)
{
}
return DateTime.Now;
}
}
public Contact OwnerContact
{
get
{
return this._ownerContact;
}
set
{
this._ownerContact = value;
}
}
public string Time
{
get
{
return this._time;
}
set
{
this._time = value;
}
}
public string To
{
get
{
return this._to;
}
set
{
this._to = value;
}
}
}
}
|
相关资源 |
|
-
飞信的收发使用csharp进行开发
-
uC/OS 使用gcc进行开发的例子,可以参考一下
-
利用at指令进行手机短信的收发(com口)
-
这是一个专门讲述在。NET 平台下使用DELPHI进行开发的最好的书
-
短信平台管理系统是一个短信收发的平台,用户可以找一些代理的短信平台(IP),在系统里修改一些设置就可以进行短信的收发,有短信服务器的IP,服务器端口.系统还有一些常用用户的设置,包括客户资料,客户分类
-
短信平台管理系统是一个短信收发的平台,用户可以找一些代理的短信平台(IP),在系统里修改一些设置就可以进行短信的收发,有短信服务器的IP,服务器端口.系统还有一些常用用户的设置,包括客户资料,客户分类
-
使用AppFuse进行开发的总结.中文.分别从spring
-
实现短信的收发应用非常的方便,系统很小直接使用不需安装
|