当前位置: 首页>>代码示例>>C#>>正文


C# Channel.ContainsUser方法代码示例

本文整理汇总了C#中wmib.Channel.ContainsUser方法的典型用法代码示例。如果您正苦于以下问题:C# Channel.ContainsUser方法的具体用法?C# Channel.ContainsUser怎么用?C# Channel.ContainsUser使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在wmib.Channel的用法示例。


在下文中一共展示了Channel.ContainsUser方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: RetrieveStatus2

 public void RetrieveStatus2(string nick, Channel channel, string source)
 {
     try
     {
         string response = "I have never seen " + nick;
         bool found = false;
         string action = "quiting the network";
         lock (GlobalList)
         {
             foreach (item xx in GlobalList)
             {
                 if (nick.ToUpper() == xx.nick.ToUpper())
                 {
                     found = true;
                     Channel last;
                     switch (xx.LastAc)
                     {
                         case item.Action.Join:
                             action = "joining the channel";
                             last = Core.GetChannel(xx.lastplace);
                             if (last != null)
                             {
                                 if (last.ContainsUser(nick))
                                 {
                                     action += ", they are still in the channel";
                                 }
                                 else
                                 {
                                     action += ", but they are not in the channel now and I don't know why, in";
                                 }
                             }
                             break;
                         case item.Action.Kick:
                             action = "kicked from the channel";
                             break;
                         case item.Action.Nick:
                             if (xx.newnick == null)
                             {
                                 action = "error NULL pointer at record";
                                 break;
                             }
                             action = "changing the nickname to " + xx.newnick;
                             last = Core.GetChannel(xx.lastplace);
                             if (last.ContainsUser(xx.newnick))
                             {
                                 action += " and " + xx.newnick + " is still in the channel";
                             }
                             else
                             {
                                 action += ", but " + xx.newnick + " is no longer in channel";
                             }
                             item nick2 = getItem(xx.newnick);
                             if (nick2 != null)
                             {
                                 TimeSpan span3 = DateTime.Now - nick2.LastSeen;
                                 switch (nick2.LastAc)
                                 {
                                     case item.Action.Exit:
                                         action += " because he quitted the network " + span3.ToString() + " ago. The nick change was done in";
                                         break;
                                     case item.Action.Kick:
                                         action += " because he was kicked from the channel " + span3.ToString() + " ago. The nick change was done in";
                                         break;
                                     case item.Action.Part:
                                         action += " because he left the channel " + span3.ToString() + " ago. The nick change was done in";
                                         break;
                                 }
                             }
                             break;
                         case item.Action.Part:
                             action = "leaving the channel";
                             break;
                         case item.Action.Talk:
                             action = "talking in the channel";
                             last = Core.GetChannel(xx.lastplace);
                             if (last != null)
                             {
                                 if (last.ContainsUser(nick))
                                 {
                                     action += ", they are still in the channel";
                                 }
                                 else
                                 {
                                     action += ", but they are not in the channel now and I don't know why, in";
                                 }
                             }
                             break;
                         case item.Action.Exit:
                             string reason = xx.quit;
                             if (reason == "")
                             {
                                 reason = "no reason was given";
                             }
                             action = "quitting the network with reason: " + reason;
                             break;
                     }
                     TimeSpan span = DateTime.Now - xx.LastSeen;
                     if (xx.LastAc == item.Action.Exit)
                     {
                         response = "Last time I saw " + nick + " they were " + action + " at " + xx.LastSeen.ToString() + " (" + RegularModule.FormatTimeSpan (span) + " ago)";
//.........这里部分代码省略.........
开发者ID:johnduhart,项目名称:wikimedia-bot,代码行数:101,代码来源:Seen.cs


注:本文中的wmib.Channel.ContainsUser方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。