Click or drag to resize
IUserManagerGetUsersByUniqueId Method
Returns a collection of users that have the unique identifiers passed across.

Namespace: VirtualRadar.Interface.Settings
Assembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
IEnumerable<IUser> GetUsersByUniqueId(
	IEnumerable<string> uniqueIdentifiers
)

Parameters

uniqueIdentifiers
Type: System.Collections.GenericIEnumerableString

Return Value

Type: IEnumerableIUser
Remarks
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