本文整理汇总了C#中IMAPSimulator.SetFlagOnMessage方法的典型用法代码示例。如果您正苦于以下问题:C# IMAPSimulator.SetFlagOnMessage方法的具体用法?C# IMAPSimulator.SetFlagOnMessage怎么用?C# IMAPSimulator.SetFlagOnMessage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IMAPSimulator
的用法示例。
在下文中一共展示了IMAPSimulator.SetFlagOnMessage方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestExpungeNotification
public void TestExpungeNotification()
{
_settings.IMAPIdleEnabled = true;
hMailServer.Account oAccount = SingletonProvider<Utilities>.Instance.AddAccount(_domain, "[email protected]", "test");
for (int i = 0; i < 5; i++ )
SMTPClientSimulator.StaticSend("[email protected]", oAccount.Address, "Test", "test");
POP3Simulator.AssertMessageCount(oAccount.Address, "test", 5);
IMAPSimulator oSimulator1 = new IMAPSimulator();
IMAPSimulator oSimulator2 = new IMAPSimulator();
oSimulator1.ConnectAndLogon(oAccount.Address, "test");
oSimulator2.ConnectAndLogon(oAccount.Address, "test");
oSimulator1.SelectFolder("Inbox");
oSimulator2.SelectFolder("Inbox");
for (int i = 1; i <= 5; i++)
{
Assert.IsTrue(oSimulator1.SetFlagOnMessage(i, true, @"\Deleted"));
}
string noopResponse = oSimulator2.NOOP()+ oSimulator2.NOOP();
Assert.IsTrue(noopResponse.Contains(@"* 1 FETCH (FLAGS (\Deleted)") &&
noopResponse.Contains(@"* 1 FETCH (FLAGS (\Deleted)") &&
noopResponse.Contains(@"* 1 FETCH (FLAGS (\Deleted)") &&
noopResponse.Contains(@"* 1 FETCH (FLAGS (\Deleted)") &&
noopResponse.Contains(@"* 1 FETCH (FLAGS (\Deleted)"), noopResponse);
bool result = oSimulator1.Expunge();
string expungeResult = oSimulator2.NOOP() + oSimulator2.NOOP();
Assert.IsTrue(expungeResult.Contains("* 1 EXPUNGE\r\n* 1 EXPUNGE\r\n* 1 EXPUNGE\r\n* 1 EXPUNGE\r\n* 1 EXPUNGE"), expungeResult);
}
示例2: TestExpunge
public void TestExpunge()
{
hMailServer.Account account = SingletonProvider<Utilities>.Instance.AddAccount(_domain, "[email protected]", "test");
for (int i = 0; i < 3; i++ )
SMTPClientSimulator.StaticSend("[email protected]", account.Address, "Test", "test");
POP3Simulator.AssertMessageCount(account.Address, "test", 3);
IMAPSimulator simulator = new IMAPSimulator();
Assert.IsTrue(simulator.ConnectAndLogon(account.Address, "test"));
Assert.IsTrue(simulator.SelectFolder("Inbox"));
Assert.IsTrue(simulator.SetFlagOnMessage(1, true, @"\Deleted"));
Assert.IsTrue(simulator.SetFlagOnMessage(3, true, @"\Deleted"));
string result;
Assert.IsTrue(simulator.Expunge(out result));
// Messages 1 and 2 should be deleted. 2, because when the first message
// is deleted, the index of the message which was originally 3, is now 2.
Assert.IsTrue(result.Contains("* 1 EXPUNGE\r\n* 2 EXPUNGE"));
}