コード例 #1
0
        /// <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
ファイル: AnalysisDescriptor.cs プロジェクト: base31/NEST
 internal AnalysisDescriptor(AnalysisSettings settings)
 {
     this._AnalysisSettings = settings;
 }
コード例 #3
0
ファイル: AnalysisDescriptor.cs プロジェクト: GopiKand/NEST
 internal AnalysisDescriptor(AnalysisSettings settings)
 {
     this._AnalysisSettings = settings;
 }
コード例 #4
0
ファイル: AnalysisDescriptor.cs プロジェクト: base31/NEST
 public AnalysisDescriptor()
 {
     this._AnalysisSettings = new AnalysisSettings();
 }
コード例 #5
0
ファイル: AnalysisDescriptor.cs プロジェクト: GopiKand/NEST
 public AnalysisDescriptor()
 {
     this._AnalysisSettings = new AnalysisSettings();
 }