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);
        }