本文整理汇总了C#中IObjectContainer.InitializeFromConfigFile方法的典型用法代码示例。如果您正苦于以下问题:C# IObjectContainer.InitializeFromConfigFile方法的具体用法?C# IObjectContainer.InitializeFromConfigFile怎么用?C# IObjectContainer.InitializeFromConfigFile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IObjectContainer
的用法示例。
在下文中一共展示了IObjectContainer.InitializeFromConfigFile方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: App
public App(IConfigSource configSource)
{
id = Guid.NewGuid();
if (configSource == null)
throw new ArgumentNullException("configSource 为空");
if (configSource.Config == null)
throw new ConfigException("没有定义配置信息");
if (configSource.Config.ObjectContainer == null)
throw new ConfigException("当前配置文件中没有定义ObjectContainer信息");
if (string.IsNullOrEmpty(configSource.Config.ObjectContainer.Provider))
throw new ConfigException("当前配置文件中没有定义ObjectContainer的Provider信息");
this.configSource = configSource;
//从配置文件中加载ObjectContainer
Type objectContainerType = Type.GetType(configSource.Config.ObjectContainer.Provider);
if (objectContainerType == null)
throw new ConfigException("没有找到类型为{0}的ObjectContainer", configSource.Config.ObjectContainer.Provider);
objectContainer = Activator.CreateInstance(objectContainerType) as ObjectContainer.ObjectContainer;
//如果需要从配置文件中加载映射关系
if (configSource.Config.ObjectContainer.InitFromConfigFile)
{
string sectionName = configSource.Config.ObjectContainer.SectionName;
if (!string.IsNullOrEmpty(sectionName))
{
objectContainer.InitializeFromConfigFile(sectionName);
}
else
throw new ConfigException("当ObejctContainer配置信息中的InitFromConfigFile属性为true的时候,必须同时提供Section name属性");
}
//从配置文件中加载Interceptors
if (configSource.Config.Interception != null
&& configSource.Config.Interception.Interceptors != null)
{
foreach (InterceptorElement interceptorElement in configSource.Config.Interception.Interceptors)
{
Type interceptorType = Type.GetType(interceptorElement.Type);
if (interceptorType == null)
throw new ConfigException("找不到类型为{0}的拦截器", interceptorElement.Type);
var interceptor = (IInterceptor) Activator.CreateInstance(interceptorType);
interceptors.Add(interceptor);
}
}
}