System.Configuration.FactoryRecord.IsEquivalentSectionGroupFactory C# (CSharp) Метод

IsEquivalentSectionGroupFactory() приватный Метод

private IsEquivalentSectionGroupFactory ( IInternalConfigHost host, string typeName ) : bool
host IInternalConfigHost
typeName string
Результат bool
        internal bool IsEquivalentSectionGroupFactory(IInternalConfigHost host, string typeName) {
            if (typeName == null || _factoryTypeName == null)
                return true;

            return IsEquivalentType(host, typeName);
        }