| 
            
              SecurityHubSearchUserAccounts(String, Int32) Method
             | 
          
        
        
            Searches user accounts by resolved names limited to the specified number of records.
            
        
        Namespace: GSF.Web.SecurityAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.257-beta
Syntaxpublic IEnumerable<IDLabel> SearchUserAccounts(
	string searchText,
	int limit
)
Public Function SearchUserAccounts ( 
	searchText As String,
	limit As Integer
) As IEnumerable(Of IDLabel)
public:
IEnumerable<IDLabel^>^ SearchUserAccounts(
	String^ searchText, 
	int limit
)
member SearchUserAccounts : 
        searchText : string * 
        limit : int -> IEnumerable<IDLabel> function SearchUserAccounts(searchText, limit);
 View SourceParameters
- searchText  String
 - Search text to lookup.
 - limit  Int32
 - Limit of number of record to return.
 
Return Value
IEnumerableIDLabelSearch results as "IDLabel" instances - serialized as JSON [{ id : "value", label : "name" }, ...]; useful for dynamic lookup lists.
See Also