From 59687b1f9c97577b78a70c39966397172fc2ce10 Mon Sep 17 00:00:00 2001 From: Brian Dukes Date: Tue, 29 Nov 2022 09:20:55 -0600 Subject: [PATCH] Correct GetUsersBasicSearch docs --- DNN Platform/Library/Entities/Users/IUserController.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DNN Platform/Library/Entities/Users/IUserController.cs b/DNN Platform/Library/Entities/Users/IUserController.cs index e92c8fc9809..af33d161629 100644 --- a/DNN Platform/Library/Entities/Users/IUserController.cs +++ b/DNN Platform/Library/Entities/Users/IUserController.cs @@ -60,14 +60,14 @@ IList GetUsersAdvancedSearch( string propertyNames, string propertyValues); - /// Searches for users via user fields and profile properties. + /// Searches for users via a user property. /// The portal ID in which to search for users. /// The 0-based page index. /// The number of results to return in each page. /// The name of the column/property to sort by. Sorts by if not supplied. /// Whether the sort is ascending or descending. - /// A comma-delimited list of property names (e.g. "Username,Street1"). - /// A comma-delimited list of property values (e.g. "jane,123 Street"). + /// A property name (i.e. a column from vw_Users, for example "Username", "DisplayName" or "Email"). + /// The value to search by, results will contain this text in the property. /// A list of instances. IList GetUsersBasicSearch( int portalId,