System.Net.ConnectionGroup.ConnectionGroup C# (CSharp) Method

ConnectionGroup() private method

private ConnectionGroup ( ServicePoint servicePoint, string connName ) : System.Collections
servicePoint ServicePoint
connName string
return System.Collections
        internal ConnectionGroup(ServicePoint servicePoint, string connName) {
            m_ServicePoint      = servicePoint;
            m_ConnectionLimit   = servicePoint.ConnectionLimit;
            m_ConnectionList    = new ArrayList(DefaultConnectionListSize); //it may grow beyond
            m_Name              = MakeQueryStr(connName);
            m_AbortDelegate     = new HttpAbortDelegate(Abort);
            GlobalLog.Print("ConnectionGroup::.ctor m_ConnectionLimit:" + m_ConnectionLimit.ToString());
        }