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

CustomizeSelections() public method

public CustomizeSelections ( Func solveCallback ) : void
solveCallback Func
return void
        public void CustomizeSelections(Func<Selections> solveCallback)
        {
            #region Sanity checks
            if (solveCallback == null) throw new ArgumentNullException(nameof(solveCallback));
            #endregion

            // TODO: Implement

            _customizeSelectionsWaitHandle.WaitOne();
        }
        #endregion