本文整理汇总了C#中wmib.config.LoadConfig方法的典型用法代码示例。如果您正苦于以下问题:C# config.LoadConfig方法的具体用法?C# config.LoadConfig怎么用?C# config.LoadConfig使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类wmib.config
的用法示例。
在下文中一共展示了config.LoadConfig方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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(config.channel chan, string user, string host, string message)
{
User invoker = new User(user, host, "");
if (message == config.CommandPrefix + "reload")
{
if (chan.Users.IsApproved(invoker, "admin"))
{
chan.LoadConfig();
lock (Module.module)
{
foreach (Module xx in Module.module)
{
try
{
if (xx.working)
{
xx.Hook_ReloadConfig(chan);
}
}
catch (Exception fail)
{
Program.Log("Crash on Hook_Reload in " + xx.Name);
handleException(fail);
}
}
}
irc._SlowQueue.DeliverMessage(messages.get("Config", chan.Language), chan.Name);
return;
}
if (!chan.suppress_warnings)
{
irc._SlowQueue.DeliverMessage(messages.get("PermissionDenied", chan.Language), chan.Name);
}
return;
}
if (message == config.CommandPrefix + "refresh")
{
if (chan.Users.IsApproved(invoker, "flushcache"))
{
irc.RestartIRCMessageDelivery();
irc.Message(messages.get("MessageQueueWasReloaded", chan.Language), chan.Name);
return;
}
if (!chan.suppress_warnings)
{
irc._SlowQueue.DeliverMessage(messages.get("PermissionDenied", chan.Language), chan.Name, IRC.priority.low);
}
return;
}
if (message == config.CommandPrefix + "info")
{
irc._SlowQueue.DeliverMessage(config.WebpageURL + config.DumpDir + "/" + System.Web.HttpUtility.UrlEncode(chan.Name) + ".htm", chan.Name);
return;
}
if (message.StartsWith(config.CommandPrefix + "part "))
{
string channel = message.Substring(6);
if (channel != "")
{
config.channel Channel = core.getChannel(channel);
if (Channel == null)
{
irc._SlowQueue.DeliverMessage(messages.get("UnknownChan", chan.Language), chan.Name, IRC.priority.low);
return;
}
core.partChannel(Channel, invoker.Nick, invoker.Host, config.CommandPrefix + "part", chan.Name);
return;
}
irc._SlowQueue.DeliverMessage("It would be cool to give me a name of channel you want to part", chan.Name, IRC.priority.low);
return;
}
if (message.StartsWith(config.CommandPrefix + "drop "))
{
string channel = message.Substring(6);
if (channel != "")
{
config.channel Channel = core.getChannel(channel);
if (Channel == null)
{
irc._SlowQueue.DeliverMessage(messages.get("UnknownChan", chan.Language), chan.Name, IRC.priority.low);
return;
}
core.partChannel(Channel, invoker.Nick, invoker.Host, config.CommandPrefix + "drop", chan.Name);
return;
}
irc._SlowQueue.DeliverMessage("It would be cool to give me a name of channel you want to drop", chan.Name, IRC.priority.low);
return;
}
if (message.StartsWith(config.CommandPrefix + "language"))
//.........这里部分代码省略.........
示例2: admin
/// <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 admin(config.channel chan, string user, string host, string message)
{
User invoker = new User(user, host, "");
if (message == "@reload")
{
if (chan.Users.isApproved(invoker.Nick, invoker.Host, "admin"))
{
chan.LoadConfig();
lock (Module.module)
{
foreach (Module xx in Module.module)
{
try
{
if (xx.working)
{
xx.Hook_ReloadConfig(chan);
}
}
catch (Exception fail)
{
Program.Log("Crash on Hook_Reload in " + xx.Name);
core.handleException(fail);
}
}
}
irc._SlowQueue.DeliverMessage(messages.get("Config", chan.Language), chan.Name);
return;
}
irc._SlowQueue.DeliverMessage(messages.get("PermissionDenied", chan.Language), chan.Name);
return;
}
if (message == "@refresh")
{
if (chan.Users.isApproved(invoker.Nick, host, "flushcache"))
{
irc._Queue.Abort();
irc._SlowQueue.newmessages.Clear();
irc._Queue = new System.Threading.Thread(new System.Threading.ThreadStart(irc._SlowQueue.Run));
irc._SlowQueue.messages.Clear();
irc._Queue.Start();
irc.Message(messages.get("MessageQueueWasReloaded", chan.Language), chan.Name);
return;
}
if (!chan.suppress_warnings)
{
irc._SlowQueue.DeliverMessage(messages.get("PermissionDenied", chan.Language), chan.Name, IRC.priority.low);
}
return;
}
if (message == ("@info"))
{
irc._SlowQueue.DeliverMessage(config.url + config.DumpDir + "/" + System.Web.HttpUtility.UrlEncode(chan.Name) + ".htm", chan.Name);
return;
}
if (message.StartsWith("@part "))
{
string channel = message.Substring(6);
if (channel != "")
{
config.channel Channel = core.getChannel(channel);
if (Channel == null)
{
irc._SlowQueue.DeliverMessage(messages.get("UnknownChan", chan.Language), chan.Name, IRC.priority.low);
return;
}
core.partChannel(Channel, invoker.Nick, invoker.Host, "@part", chan.Name);
return;
}
irc._SlowQueue.DeliverMessage("It would be cool to give me a name of channel you want to part", chan.Name, IRC.priority.low);
return;
}
if (message.StartsWith("@drop "))
{
string channel = message.Substring(6);
if (channel != "")
{
config.channel Channel = core.getChannel(channel);
if (Channel == null)
{
irc._SlowQueue.DeliverMessage(messages.get("UnknownChan", chan.Language), chan.Name, IRC.priority.low);
return;
}
core.partChannel(Channel, invoker.Nick, invoker.Host, "@drop", chan.Name);
return;
}
irc._SlowQueue.DeliverMessage("It would be cool to give me a name of channel you want to drop", chan.Name, IRC.priority.low);
return;
}
//.........这里部分代码省略.........