本文整理匯總了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;
}
//.........這裏部分代碼省略.........