当前位置: 首页>>代码示例>>C#>>正文


C# IObjectContainer.InitializeFromConfigFile方法代码示例

本文整理汇总了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);
                }
            }
        }
开发者ID:vebin,项目名称:BDDD,代码行数:45,代码来源:App.cs


注:本文中的IObjectContainer.InitializeFromConfigFile方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。