本文整理汇总了C#中RegressionTests.Shared.ImapClientSimulator.SetFlagOnFirstMessage方法的典型用法代码示例。如果您正苦于以下问题:C# ImapClientSimulator.SetFlagOnFirstMessage方法的具体用法?C# ImapClientSimulator.SetFlagOnFirstMessage怎么用?C# ImapClientSimulator.SetFlagOnFirstMessage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类RegressionTests.Shared.ImapClientSimulator
的用法示例。
在下文中一共展示了ImapClientSimulator.SetFlagOnFirstMessage方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestSearch
public void TestSearch()
{
Application application = SingletonProvider<TestSetup>.Instance.GetApp();
Account oAccount = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "se'[email protected]", "test");
// Send a message to this account.
var smtpClientSimulator = new SmtpClientSimulator();
smtpClientSimulator.Send(oAccount.Address, oAccount.Address, "Search test", "This is a test of IMAP Search");
ImapClientSimulator.AssertMessageCount(oAccount.Address, "test", "INBOX", 1);
var oSimulator = new ImapClientSimulator();
string sWelcomeMessage = oSimulator.Connect();
oSimulator.Logon(oAccount.Address, "test");
Assert.IsTrue(oSimulator.SelectFolder("INBOX"));
oSimulator.SetFlagOnFirstMessage(true, "\\ANSWERED");
if (oSimulator.Search("ANSWERED") != "1")
throw new Exception("ERROR - Search or flag failed");
oSimulator.SetFlagOnFirstMessage(false, "\\ANSWERED");
if (oSimulator.Search("ANSWERED") != "")
throw new Exception("ERROR - Search or flag failed");
oSimulator.SetFlagOnFirstMessage(true, "\\DELETED");
if (oSimulator.Search("DELETED") != "1")
throw new Exception("ERROR - Search or flag failed");
oSimulator.SetFlagOnFirstMessage(false, "\\DELETED");
if (oSimulator.Search("DELETED") != "")
throw new Exception("ERROR - Search or flag failed");
oSimulator.SetFlagOnFirstMessage(true, "\\DRAFT");
if (oSimulator.Search("DRAFT") != "1")
throw new Exception("ERROR - Search or flag failed");
oSimulator.SetFlagOnFirstMessage(false, "\\DRAFT");
if (oSimulator.Search("DRAFT") != "")
throw new Exception("ERROR - Search or flag failed");
oSimulator.SetFlagOnFirstMessage(true, "\\FLAGGED");
if (oSimulator.Search("FLAGGED ") != "1")
throw new Exception("ERROR - Search or flag failed");
oSimulator.SetFlagOnFirstMessage(false, "\\FLAGGED");
if (oSimulator.Search("FLAGGED") != "")
throw new Exception("ERROR - Search or flag failed");
oSimulator.SetFlagOnFirstMessage(true, "\\SEEN");
if (oSimulator.Search("SEEN") != "1")
throw new Exception("ERROR - Search or flag failed");
oSimulator.SetFlagOnFirstMessage(false, "\\SEEN");
if (oSimulator.Search("SEEN") != "")
throw new Exception("ERROR - Search or flag failed");
oSimulator.SetFlagOnFirstMessage(true, "\\ANSWERED");
if (oSimulator.Search("UNANSWERED") != "")
throw new Exception("ERROR - Search or flag failed");
oSimulator.SetFlagOnFirstMessage(false, "\\ANSWERED");
if (oSimulator.Search("UNANSWERED") != "1")
throw new Exception("ERROR - Search or flag failed");
oSimulator.SetFlagOnFirstMessage(true, "\\DELETED");
if (oSimulator.Search("UNDELETED") != "")
throw new Exception("ERROR - Search or flag failed");
oSimulator.SetFlagOnFirstMessage(false, "\\DELETED");
if (oSimulator.Search("UNDELETED") != "1")
throw new Exception("ERROR - Search or flag failed");
oSimulator.SetFlagOnFirstMessage(true, "\\DRAFT");
if (oSimulator.Search("UNDRAFT") != "")
throw new Exception("ERROR - Search or flag failed");
oSimulator.SetFlagOnFirstMessage(false, "\\DRAFT");
if (oSimulator.Search("UNDRAFT") != "1")
throw new Exception("ERROR - Search or flag failed");
oSimulator.SetFlagOnFirstMessage(true, "\\FLAGGED");
if (oSimulator.Search("UNFLAGGED") != "")
throw new Exception("ERROR - Search or flag failed");
oSimulator.SetFlagOnFirstMessage(false, "\\FLAGGED");
if (oSimulator.Search("UNFLAGGED") != "1")
throw new Exception("ERROR - Search or flag failed");
// SEARCH using LARGER & SMALLER
if (oSimulator.Search("SMALLER 10") != "")
throw new Exception("ERROR - Search or flag failed");
if (oSimulator.Search("SMALLER 10000") != "1")
throw new Exception("ERROR - Search or flag failed");
if (oSimulator.Search("LARGER 10") != "1")
throw new Exception("ERROR - Search or flag failed");
//.........这里部分代码省略.........