예제 #1
0
        protected Type GetConnectorType(IConfigurationSection configSection)
        {
            var typeName = configSection.GetSection("ConnectorType").Value;

            if (typeName == null)
            {
                return(null);
            }

            return(_typeFinder.FindClass(typeName));
        }