本文整理匯總了C#中wmib.Channel.LoadConfig方法的典型用法代碼示例。如果您正苦於以下問題:C# Channel.LoadConfig方法的具體用法?C# Channel.LoadConfig怎麽用?C# Channel.LoadConfig使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類wmib.Channel
的用法示例。
在下文中一共展示了Channel.LoadConfig方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: ParseAdmin
/// <summary>
/// Display admin command
/// </summary>
/// <param name="chan">Channel</param>
/// <param name="user">User name</param>
/// <param name="host">Host</param>
/// <param name="message">Message</param>
public static void ParseAdmin(Channel chan, string user, string host, string message)
{
libirc.UserInfo invoker = new libirc.UserInfo(user, "", host);
if (message == Configuration.System.CommandPrefix + "reload")
{
if (chan.SystemUsers.IsApproved(invoker, "admin"))
{
chan.LoadConfig();
SystemHooks.IrcReloadChannelConf(chan);
IRC.DeliverMessage(messages.Localize("Config", chan.Language), chan);
return;
}
if (!chan.SuppressWarnings)
{
IRC.DeliverMessage(messages.Localize("PermissionDenied", chan.Language), chan);
}
return;
}
if (message == Configuration.System.CommandPrefix + "info")
{
IRC.DeliverMessage(Configuration.WebPages.WebpageURL + Configuration.Paths.DumpDir
+ "/" + HttpUtility.UrlEncode(chan.Name) + ".htm", chan);
return;
}
if (message.StartsWith(Configuration.System.CommandPrefix + "part "))
{
string channel = message.Substring(6);
if (channel != "")
{
Channel _Channel = Core.GetChannel(channel);
if (_Channel == null)
{
IRC.DeliverMessage(messages.Localize("UnknownChan", chan.Language), chan,
libirc.Defs.Priority.Low);
return;
}
PartChannel(_Channel, invoker.Nick, invoker.Host, Configuration.System.CommandPrefix
+ "part", chan.Name);
return;
}
IRC.DeliverMessage(messages.Localize("Responses-PartFail", chan.Language), chan,
libirc.Defs.Priority.Low);
return;
}
if (message.StartsWith(Configuration.System.CommandPrefix + "drop "))
{
string channel = message.Substring(6);
if (channel != "")
{
Channel _Channel = Core.GetChannel(channel);
if (_Channel == null)
{
IRC.DeliverMessage(messages.Localize("UnknownChan", chan.Language), chan,
libirc.Defs.Priority.Low);
return;
}
PartChannel(_Channel, invoker.Nick, invoker.Host, Configuration.System.CommandPrefix
+ "drop", chan.Name);
return;
}
IRC.DeliverMessage(messages.Localize("Responses-PartFail", chan.Language), chan,
libirc.Defs.Priority.Low);
return;
}
if (message.StartsWith(Configuration.System.CommandPrefix + "language"))
{
if (chan.SystemUsers.IsApproved(invoker, "admin"))
{
string parameter = "";
if (message.Contains(" "))
{
parameter = message.Substring(message.IndexOf(" ") + 1).ToLower();
}
if (parameter != "")
{
if (messages.Exists(parameter))
{
chan.Language = parameter;
IRC.DeliverMessage(messages.Localize("Language", chan.Language), chan);
chan.SaveConfig();
return;
}
if (!chan.SuppressWarnings)
{
IRC.DeliverMessage(messages.Localize("InvalidCode", chan.Language), chan);
}
return;
}
IRC.DeliverMessage(messages.Localize("LanguageInfo", chan.Language), chan);
//.........這裏部分代碼省略.........