本文整理汇总了C#中Config.load方法的典型用法代码示例。如果您正苦于以下问题:C# Config.load方法的具体用法?C# Config.load怎么用?C# Config.load使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Config
的用法示例。
在下文中一共展示了Config.load方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: loadData
/// <summary>
/// Loads data with common configuration.
/// </summary>
private void loadData()
{
try
{
var config = new Config();
var userConfig = new UserConfig();
Settings.CfgManager.addAndUse(config, userConfig, ContextType.Common);
config.load();
Log.Trace("Config Link: '{0}'", config.Link);
userConfig.load();
Log.Trace("UserConfig Link: '{0}'", userConfig.Link);
}
catch(Exception ex) {
Log.Fatal("Can't load data with common configuration: '{0}'", ex.Message);
throw;
}
}
示例2: solutionOpened
/// <summary>
/// Solution has been opened.
/// </summary>
/// <param name="pUnkReserved">Reserved for future use.</param>
/// <param name="fNewSolution">true if the solution is being created. false if the solution was created previously or is being loaded.</param>
/// <returns>If the method succeeds, it returns VSConstants.S_OK. If it fails, it returns an error code.</returns>
public int solutionOpened(object pUnkReserved, int fNewSolution)
{
Config config = new Config();
UserConfig userConfig = new UserConfig();
bool isNew = !config.load(Environment.SolutionPath, Environment.SolutionFileName);
Log.Trace("Config Link: '{0}'", config.Link);
userConfig.load(config.Link);
Log.Trace("UserConfig Link: '{0}'", userConfig.Link);
ConfigManager.add(config, ContextType.Solution);
ConfigManager.add(userConfig, ContextType.Solution);
ConfigManager.switchOn((isNew || userConfig.Data.Global.IgnoreConfiguration)? ContextType.Common : ContextType.Solution);
refreshComponents();
Action.Cmd.MSBuild.initPropByDefault();
OpenedSolution(this, new EventArgs());
return VSConstants.S_OK;
}