本文整理匯總了C#中wmib.Channel.RetrieveUser方法的典型用法代碼示例。如果您正苦於以下問題:C# Channel.RetrieveUser方法的具體用法?C# Channel.RetrieveUser怎麽用?C# Channel.RetrieveUser使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類wmib.Channel
的用法示例。
在下文中一共展示了Channel.RetrieveUser方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: GetOp
public void GetOp(Channel chan)
{
if (!GetConfig(chan, "OP.Permanent", false))
{
chan.PrimaryInstance.irc.Queue.Send("CS op " + chan.Name, IRC.priority.high);
return;
}
// get our user
User user = chan.RetrieveUser(chan.PrimaryInstance.Nick);
if (user == null)
{
chan.PrimaryInstance.irc.Queue.Send("CS op " + chan.Name, IRC.priority.high);
return;
}
if (!user.IsOperator)
{
chan.PrimaryInstance.irc.Queue.Send("CS op " + chan.Name, IRC.priority.high);
}
}
示例2: GetSelfHost
private static string GetSelfHost(Channel channel)
{
// try to get own hostname, if we can't find it, use default from configuration files
string hostname = Configuration.IRC.Hostname;
libirc.User self = channel.RetrieveUser(channel.PrimaryInstance.Nick);
if (self != null)
hostname = self.Host;
return hostname;
}