コード例 #1
0
 public IndicesQueryDescriptor <T> NoMatchQuery(NoMatchShortcut shortcut)
 {
     ((IIndicesQuery)this).NoMatchQuery = new NoMatchQueryContainer {
         Shortcut = shortcut
     };
     return(this);
 }
コード例 #2
0
 public IndicesFilterDescriptor <T> NoMatchFilter(NoMatchShortcut shortcut)
 {
     ((IIndicesFilter)this).NoMatchFilter = new NoMatchFilterContainer {
         Shortcut = shortcut
     };
     return(this);
 }
コード例 #3
0
 public IndicesQueryDescriptor <T> NoMatchQuery(NoMatchShortcut shortcut) =>
 Assign(a => a.NoMatchQuery = new NoMatchQueryContainer {
     Shortcut = shortcut
 });