File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -30,5 +30,15 @@ public interface ISearchFactoryImplementor : ISearchFactory
30
30
void AddIndexingParameters ( IDirectoryProvider provider , LuceneIndexingParameters indexingParameters ) ;
31
31
32
32
void Close ( ) ;
33
+
34
+ /// <summary>
35
+ /// Adds a FilterDef object to the ISearchFactory implementation with the given name.
36
+ /// In most cases, FilterDefs should be added during mapping configuration in a
37
+ /// custom ISearchMapping implementation. This method enables FilterDefs to be added
38
+ /// after mapping at run-time anytime an IFullTextSession is available.
39
+ /// </summary>
40
+ /// <param name="name"></param>
41
+ /// <param name="filter"></param>
42
+ void AddFilterDefinition ( string name , FilterDef filter ) ;
33
43
}
34
44
}
Original file line number Diff line number Diff line change @@ -53,15 +53,5 @@ public interface ISearchFactory
53
53
/// <param name="name"></param>
54
54
/// <returns>A FilterDef object associated with the included name parameter.</returns>
55
55
FilterDef GetFilterDefinition ( string name ) ;
56
-
57
- /// <summary>
58
- /// Adds a FilterDef object to the ISearchFactory implementation with the given name.
59
- /// In most cases, FilterDefs should be added during mapping configuration in a
60
- /// custom ISearchMapping implementation. This method enables FilterDefs to be added
61
- /// after mapping at run-time anytime an IFullTextSession is available.
62
- /// </summary>
63
- /// <param name="name"></param>
64
- /// <param name="filter"></param>
65
- void AddFilterDefinition ( string name , FilterDef filter ) ;
66
56
}
67
57
}
You can’t perform that action at this time.
0 commit comments