ZeroInstall.Store.ViewModel.CacheNodeBuilder.CacheNodeBuilder C# (CSharp) Method

CacheNodeBuilder() public method

Creates a new list builder
public CacheNodeBuilder ( [ store, [ feedCache ) : System
store [ Used to list s
feedCache [ Used to load s.
return System
        public CacheNodeBuilder([NotNull] IStore store, [NotNull] IFeedCache feedCache)
        {
            #region Sanity checks
            if (store == null) throw new ArgumentNullException(nameof(store));
            if (feedCache == null) throw new ArgumentNullException(nameof(feedCache));
            #endregion

            _store = store;
            _feedCache = feedCache;
        }
        #endregion