| UserGetModifiedUsers Method |
Gets of all user accounts that were modified within the specified time frame.
Namespace:
Galactic.ActiveDirectory
Assembly:
Galactic.ActiveDirectory (in Galactic.ActiveDirectory.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public static List<User> GetModifiedUsers(
ActiveDirectory ad,
DateTime startDate,
DateTime endDate
)
Public Shared Function GetModifiedUsers (
ad As ActiveDirectory,
startDate As DateTime,
endDate As DateTime
) As List(Of User)
public:
static List<User^>^ GetModifiedUsers(
ActiveDirectory^ ad,
DateTime startDate,
DateTime endDate
)
static member GetModifiedUsers :
ad : ActiveDirectory *
startDate : DateTime *
endDate : DateTime -> List<User>
Parameters
- ad
- Type: Galactic.ActiveDirectoryActiveDirectory
The Active Directory to retrieve users from. - startDate
- Type: SystemDateTime
The lower boundary of the time frame. - endDate
- Type: SystemDateTime
The upper boundary of the time frame.
Return Value
Type:
ListUserReturns a list of all users that were during the specified period of time.
See Also