System.Net.Configuration.ConnectionManagementSectionInternal.GetSection C# (CSharp) 메소드

GetSection() 정적인 개인적인 메소드

static private GetSection ( ) : ConnectionManagementSectionInternal
리턴 ConnectionManagementSectionInternal
        static internal ConnectionManagementSectionInternal GetSection()
        {
            lock (ConnectionManagementSectionInternal.ClassSyncObject)
            {
                ConnectionManagementSection section = PrivilegedConfigurationManager.GetSection(ConfigurationStrings.ConnectionManagementSectionPath) as ConnectionManagementSection; 
                if (section == null)
                    return null;
                
                return new ConnectionManagementSectionInternal(section);
            }
        }
ConnectionManagementSectionInternal