ZeroInstall.Commands.Gtk.GuiCommandHandler.ManageStore C# (CSharp) Method

ManageStore() public method

public ManageStore ( IStore store, IFeedCache feedCache ) : void
store IStore
feedCache IFeedCache
return void
        public void ManageStore(IStore store, IFeedCache feedCache)
        {
            #region Sanity checks
            if (store == null) throw new ArgumentNullException(nameof(store));
            if (feedCache == null) throw new ArgumentNullException(nameof(feedCache));
            #endregion

            // TODO: Implement
        }
        #endregion