You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// The maximum number of search results to return for a search request.
54
+
/// The maximum number of search results to return.
55
+
/// This acts as a hard limit—regardless of page size or batch size, no more than this number of results will be returned.
56
+
/// Set to 0 for no limit.
55
57
/// </summary>
56
58
/// <example>1000</example>
57
59
[DefaultValue(1000)]
58
60
publicintMaxResults{get;set;}
59
61
60
62
/// <summary>
61
-
/// The number of results to return in a batch. Specifying 0 means to block until all results are received. Specifying 1 means to return results one result at a time.
63
+
/// This parameter controls the chunk size in which data will be read from the server. This does not affect the output result amount.
62
64
/// </summary>
63
65
/// <example>1</example>
64
-
[DefaultValue(1)]
66
+
[DefaultValue(100)]
65
67
publicintBatchSize{get;set;}
66
68
69
+
/// <summary>
70
+
/// Controls how many entries are requested from the server in a single page during a paged LDAP search.
71
+
/// This directly affects how results are fetched from the server.
72
+
/// If set to 0, paging is disabled and all entries are requested in a single operation (not recommended for large directories).
73
+
/// </summary>
74
+
/// <example>1</example>
75
+
[DefaultValue(500)]
76
+
publicintPageSize{get;set;}
77
+
67
78
/// <summary>
68
79
/// If true, returns the names but not the values of the attributes found.
69
80
/// If false, returns the names and values for attributes found.
0 commit comments