AuthenticablePrincipal.FindByBadPasswordAttempt Method

Definition

Overloads

FindByBadPasswordAttempt(PrincipalContext, DateTime, MatchType)

Returns a collection of authentication principal objects that have an incorrect password try recorded in the specified date and time range.

FindByBadPasswordAttempt<T>(PrincipalContext, DateTime, MatchType)

Returns a PrincipalSearchResult<T> collection of objects that have a bad password attempt within the specified date and time range. This is the template function for extended classes that wish to implement this functionality.

FindByBadPasswordAttempt(PrincipalContext, DateTime, MatchType)

Source:
AuthenticablePrincipal.cs
Source:
AuthenticablePrincipal.cs
Source:
AuthenticablePrincipal.cs

Returns a collection of authentication principal objects that have an incorrect password try recorded in the specified date and time range.

public:
 static System::DirectoryServices::AccountManagement::PrincipalSearchResult<System::DirectoryServices::AccountManagement::AuthenticablePrincipal ^> ^ FindByBadPasswordAttempt(System::DirectoryServices::AccountManagement::PrincipalContext ^ context, DateTime time, System::DirectoryServices::AccountManagement::MatchType type);
public static System.DirectoryServices.AccountManagement.PrincipalSearchResult<System.DirectoryServices.AccountManagement.AuthenticablePrincipal> FindByBadPasswordAttempt (System.DirectoryServices.AccountManagement.PrincipalContext context, DateTime time, System.DirectoryServices.AccountManagement.MatchType type);
static member FindByBadPasswordAttempt : System.DirectoryServices.AccountManagement.PrincipalContext * DateTime * System.DirectoryServices.AccountManagement.MatchType -> System.DirectoryServices.AccountManagement.PrincipalSearchResult<System.DirectoryServices.AccountManagement.AuthenticablePrincipal>
Public Shared Function FindByBadPasswordAttempt (context As PrincipalContext, time As DateTime, type As MatchType) As PrincipalSearchResult(Of AuthenticablePrincipal)

Parameters

context
PrincipalContext

The PrincipalContext object that specifies the server or domain against which operations are performed.

time
DateTime

A DateTime object that identifies the date and time of the incorrect password try. This parameter is used with the type parameter to determine the range of time in which the returned objects have an incorrect logon try recorded.

type
MatchType

A MatchType enumeration value that specifies the type of match that is applied to the time parameter.

Returns

A PrincipalSearchResult<T> that contains one or more AuthenticablePrincipal objects, or an empty collection if no results are found.

Remarks

The time will default to UTC. If you want to specify the time in local time, then specify the Kind property of the time object as Local.

Applies to

FindByBadPasswordAttempt<T>(PrincipalContext, DateTime, MatchType)

Source:
AuthenticablePrincipal.cs
Source:
AuthenticablePrincipal.cs
Source:
AuthenticablePrincipal.cs

Returns a PrincipalSearchResult<T> collection of objects that have a bad password attempt within the specified date and time range. This is the template function for extended classes that wish to implement this functionality.

protected:
generic <typename T>
 static System::DirectoryServices::AccountManagement::PrincipalSearchResult<T> ^ FindByBadPasswordAttempt(System::DirectoryServices::AccountManagement::PrincipalContext ^ context, DateTime time, System::DirectoryServices::AccountManagement::MatchType type);
protected static System.DirectoryServices.AccountManagement.PrincipalSearchResult<T> FindByBadPasswordAttempt<T> (System.DirectoryServices.AccountManagement.PrincipalContext context, DateTime time, System.DirectoryServices.AccountManagement.MatchType type);
static member FindByBadPasswordAttempt : System.DirectoryServices.AccountManagement.PrincipalContext * DateTime * System.DirectoryServices.AccountManagement.MatchType -> System.DirectoryServices.AccountManagement.PrincipalSearchResult<'T>
Protected Shared Function FindByBadPasswordAttempt(Of T) (context As PrincipalContext, time As DateTime, type As MatchType) As PrincipalSearchResult(Of T)

Type Parameters

T

Parameters

context
PrincipalContext

The PrincipalContext that specifies the server or domain against which operations are performed.

time
DateTime

A DateTime object that identifies the date and time of the password set. This parameter is used with the type parameter to determine the range of time in which the returned objects have a password set recorded.

type
MatchType

A MatchType enumeration value that specifies the type of match that is applied to the time parameter.

Returns

A PrincipalSearchResult<T> that contains one or more objects of the appropriate principal type, or an empty collection if no matches are found.

Remarks

The time will default to UTC. If you want to specify the time in local time, then specify the Kind property of the time object as DateTimeKind.Local.

Applies to