/// <summary>
        /// When updating analysis settings you need to close and open the index prior and afterwards
        /// </summary>
        public UpdateSettingsDescriptor Analysis(Func <AnalysisDescriptor, AnalysisDescriptor> analysisSelector)
        {
            analysisSelector.ThrowIfNull("analysisSelector");
            var descriptor = analysisSelector(new AnalysisDescriptor());

            this._Analysis = descriptor != null ? descriptor._AnalysisSettings : null;
            return(this);
        }
示例#2
0
 internal AnalysisDescriptor(AnalysisSettings settings)
 {
     this._AnalysisSettings = settings;
 }
示例#3
0
 internal AnalysisDescriptor(AnalysisSettings settings)
 {
     this._AnalysisSettings = settings;
 }
示例#4
0
 public AnalysisDescriptor()
 {
     this._AnalysisSettings = new AnalysisSettings();
 }
示例#5
0
 public AnalysisDescriptor()
 {
     this._AnalysisSettings = new AnalysisSettings();
 }