コード例 #1
0
 public PersistentSearchOptions(PersistentSearchChangeType changeTypes, bool changesOnly, bool returnEntryChangeNotificationControls)
 {
     this.ChangeTypes = changeTypes;
     this.ChangesOnly = changesOnly;
     this.ReturnEntryChangeNotificationControls = returnEntryChangeNotificationControls;
 }
コード例 #2
0
 public PersistentSearchControl(PersistentSearchChangeType changeTypes)
     : this(new PersistentSearchOptions(changeTypes))
 {
 }
コード例 #3
0
 public PersistentSearchOptions(PersistentSearchChangeType changeTypes)
 {
     this.ChangeTypes = changeTypes;
     this.ChangesOnly = true;
     this.ReturnEntryChangeNotificationControls = true;
 }