コード例 #1
0
ファイル: NotesMailProxy.cs プロジェクト: killbug2004/WSProf
		public NotesMailProxy(object mailItem)
		{
			m_notesProxy = mailItem as NotesProxy.IProxy;
			m_notesToRecipientsProxy = new NotesRecipientsProxy(m_notesProxy.GetResolvedRecipientsTypeToken);
			m_notesCcRecipientsProxy = new NotesRecipientsProxy(m_notesProxy.GetResolvedRecipientsTypeToken);
			m_notesBccRecipientsProxy = new NotesRecipientsProxy(m_notesProxy.GetResolvedRecipientsTypeToken);
			m_notesAttachmentsProxy = new NotesAttachmentsProxy(m_notesProxy);

			m_bIsValid = true;
		}
コード例 #2
0
 public void TestSetArrayItem()
 {
     NotesAttachmentsProxy proxy = new NotesAttachmentsProxy(null);
     proxy[0] = new EmailAttachment();
 }
コード例 #3
0
 public void TestRemove()
 {
     NotesAttachmentsProxy proxy = new NotesAttachmentsProxy(null);
     proxy.Remove(new EmailAttachment());
 }
コード例 #4
0
 public void TestCopyTo()
 {
     NotesAttachmentsProxy proxy = new NotesAttachmentsProxy(null);
     IEmailAttachment[] array = new IEmailAttachment[10];
     proxy.CopyTo(array, 10);
 }
コード例 #5
0
 public void TestContains()
 {
     NotesAttachmentsProxy proxy = new NotesAttachmentsProxy(null);
     proxy.Contains(new EmailAttachment());
 }
コード例 #6
0
 public void TestClear()
 {
     NotesAttachmentsProxy proxy = new NotesAttachmentsProxy(null);
     proxy.Clear();
 }
コード例 #7
0
 public void TestAdd()
 {
     NotesAttachmentsProxy proxy = new NotesAttachmentsProxy(null);
     proxy.Add(new EmailAttachment());
 }