コード例 #1
0
ファイル: Message.cs プロジェクト: windygu/Everything
 public Message()
 {
     this.format_0                = RDIFramework.Utilities.Format.Text;
     this.encoding_0              = System.Text.Encoding.ASCII;
     this.idictionary_0           = new HybridDictionary();
     this.idictionary_1           = new HybridDictionary();
     this.messagePriority_0       = MessagePriority.Normal;
     this.messageAttachmentList_0 = new MessageAttachmentList();
     this.idictionary_2           = new Dictionary <string, LinkedResource>();
 }
コード例 #2
0
ファイル: Message.cs プロジェクト: windygu/Everything
 public Message(string from, string to, string subject, string body)
 {
     this.format_0                = RDIFramework.Utilities.Format.Text;
     this.encoding_0              = System.Text.Encoding.ASCII;
     this.idictionary_0           = new HybridDictionary();
     this.idictionary_1           = new HybridDictionary();
     this.messagePriority_0       = MessagePriority.Normal;
     this.messageAttachmentList_0 = new MessageAttachmentList();
     this.idictionary_2           = new Dictionary <string, LinkedResource>();
     this.To      = to;
     this.From    = from;
     this.Body    = body;
     this.Subject = subject;
 }