Exemplo n.º 1
0
        public SearchResultCollection(IRCollection <KeyValuePair <string, Search> > parent)
        {
            if (parent == null)
            {
                throw new ArgumentNullException("parent");
            }

            m_Parent  = parent;
            m_IsReady = true;
        }
Exemplo n.º 2
0
        public DownloadMetaDataCollection(IRCollection <KeyValuePair <string, Download> > parent)
        {
            if (parent == null)
            {
                throw new ArgumentNullException("parent");
            }

            m_Parent  = parent;
            m_IsReady = true;
        }