mailinfo.cs
来自「MSMQ之使用範例程式」· CS 代码 · 共 64 行
CS
64 行
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
/// <summary>
/// MailInfo 的摘要说明
/// </summary>
public class MailInfo
{
public MailInfo()
{
}
private string _Title;
public string Title
{
get { return _Title; }
set { _Title = value; }
}
private string _Content;
public string Content
{
get { return _Content; }
set { _Content = value; }
}
private string _Sender;
public string Sender
{
get { return _Sender; }
set { _Sender = value; }
}
private string _SenderPwd;
public string SenderPwd
{
get { return _SenderPwd; }
set { _SenderPwd = value; }
}
private string _StmpServer;
public string StmpServer
{
get { return _StmpServer; }
set { _StmpServer = value; }
}
private string _ReceiveAddress;
public string ReceiveAddress
{
get { return _ReceiveAddress; }
set { _ReceiveAddress = value; }
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?