IUserManagerGetUsersByUniqueId Method |
Returns a collection of users that have the unique identifiers passed across.
Namespace: VirtualRadar.Interface.SettingsAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax IEnumerable<IUser> GetUsersByUniqueId(
IEnumerable<string> uniqueIdentifiers
)
Function GetUsersByUniqueId (
uniqueIdentifiers As IEnumerable(Of String)
) As IEnumerable(Of IUser)
IEnumerable<IUser^>^ GetUsersByUniqueId(
IEnumerable<String^>^ uniqueIdentifiers
)
abstract GetUsersByUniqueId :
uniqueIdentifiers : IEnumerable<string> -> IEnumerable<IUser>
Parameters
- uniqueIdentifiers
- Type: System.Collections.GenericIEnumerableString
Return Value
Type:
IEnumerableIUserRemarks
It is very likely that you will be passed identifiers for users that do not exist,
or had existed at one point but were since deleted. This is because the UI to maintain
users is separate from the configuration UI. When you are passed a unique ID that no
longer exists you should omit it entirely from the result - do not return null
elements for them. If every unique ID passed across has no user associated with it
then you would return an empty list.
See Also