AuthenticablePrincipal.FindByLockoutTime Método
Definição
Sobrecargas
| FindByLockoutTime(PrincipalContext, DateTime, MatchType) |
Retorna uma coleção de objetos de entidade de segurança de autenticação que têm um tempo de bloqueio de conta registrado no intervalo de data e hora especificado.Returns a collection of authentication principal objects that have an account lockout time recorded in the specified date and time range. |
| FindByLockoutTime<T>(PrincipalContext, DateTime, MatchType) |
Retorna uma coleção PrincipalSearchResult<T> de objetos que têm um tempo de bloqueio dentro do intervalo de data e hora especificado.Returns a PrincipalSearchResult<T> collection of objects that have a lockout time within the specified date and time range. Essa é a função de modelo para classes estendidas que desejam implementar essa funcionalidade.This is the template function for extended classes that wish to implement this functionality. |
FindByLockoutTime(PrincipalContext, DateTime, MatchType)
Retorna uma coleção de objetos de entidade de segurança de autenticação que têm um tempo de bloqueio de conta registrado no intervalo de data e hora especificado.Returns a collection of authentication principal objects that have an account lockout time recorded in the specified date and time range.
public:
static System::DirectoryServices::AccountManagement::PrincipalSearchResult<System::DirectoryServices::AccountManagement::AuthenticablePrincipal ^> ^ FindByLockoutTime(System::DirectoryServices::AccountManagement::PrincipalContext ^ context, DateTime time, System::DirectoryServices::AccountManagement::MatchType type);
public static System.DirectoryServices.AccountManagement.PrincipalSearchResult<System.DirectoryServices.AccountManagement.AuthenticablePrincipal> FindByLockoutTime (System.DirectoryServices.AccountManagement.PrincipalContext context, DateTime time, System.DirectoryServices.AccountManagement.MatchType type);
static member FindByLockoutTime : System.DirectoryServices.AccountManagement.PrincipalContext * DateTime * System.DirectoryServices.AccountManagement.MatchType -> System.DirectoryServices.AccountManagement.PrincipalSearchResult<System.DirectoryServices.AccountManagement.AuthenticablePrincipal>
Public Shared Function FindByLockoutTime (context As PrincipalContext, time As DateTime, type As MatchType) As PrincipalSearchResult(Of AuthenticablePrincipal)
Parâmetros
- context
- PrincipalContext
O PrincipalContext que especifica o servidor ou domínio no qual as operações são executadas.The PrincipalContext that specifies the server or domain against which operations are performed.
- time
- DateTime
Um objeto DateTime que identifica a data e a hora de bloqueio da conta.A DateTime object that identifies the date and time of the account lockout. Esse parâmetro é usado com o parâmetro de tipo para determinar o intervalo de tempo no qual os objetos retornados têm um bloqueio de conta registrado.This parameter is used with the type parameter to determine the range of time in which the returned objects have an account lockout recorded.
- type
- MatchType
Um valor de enumeração MatchType que especifica o tipo de correspondência aplicado ao parâmetro time.A MatchType enumeration value that specifies the type of match that is applied to the time parameter.
Retornos
Um PrincipalSearchResult<T> que contém um ou mais objetos AuthenticablePrincipal.A PrincipalSearchResult<T> that contains one or more AuthenticablePrincipal objects.
Comentários
O horário padrão será o UTC.The time will default to UTC. Se você quiser especificar a hora na hora local, especifique a Kind Propriedade do time objeto como DateTimeKind.Local .If you want to specify the time in local time, then specify the Kind property of the time object as DateTimeKind.Local.
Aplica-se a
FindByLockoutTime<T>(PrincipalContext, DateTime, MatchType)
Retorna uma coleção PrincipalSearchResult<T> de objetos que têm um tempo de bloqueio dentro do intervalo de data e hora especificado.Returns a PrincipalSearchResult<T> collection of objects that have a lockout time within the specified date and time range. Essa é a função de modelo para classes estendidas que desejam implementar essa funcionalidade.This is the template function for extended classes that wish to implement this functionality.
protected:
generic <typename T>
static System::DirectoryServices::AccountManagement::PrincipalSearchResult<T> ^ FindByLockoutTime(System::DirectoryServices::AccountManagement::PrincipalContext ^ context, DateTime time, System::DirectoryServices::AccountManagement::MatchType type);
protected static System.DirectoryServices.AccountManagement.PrincipalSearchResult<T> FindByLockoutTime<T> (System.DirectoryServices.AccountManagement.PrincipalContext context, DateTime time, System.DirectoryServices.AccountManagement.MatchType type);
static member FindByLockoutTime : System.DirectoryServices.AccountManagement.PrincipalContext * DateTime * System.DirectoryServices.AccountManagement.MatchType -> System.DirectoryServices.AccountManagement.PrincipalSearchResult<'T>
Protected Shared Function FindByLockoutTime(Of T) (context As PrincipalContext, time As DateTime, type As MatchType) As PrincipalSearchResult(Of T)
Parâmetros de tipo
- T
Parâmetros
- context
- PrincipalContext
O PrincipalContext que especifica o servidor ou domínio no qual as operações são executadas.The PrincipalContext that specifies the server or domain against which operations are performed.
- time
- DateTime
Um objeto DateTime que identifica a data e a hora do conjunto de senhas.A DateTime object that identifies the date and time of the password set. Esse parâmetro é usado com o parâmetro de tipo para determinar o intervalo de tempo no qual os objetos retornados têm um conjunto de senhas registrado.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
Um valor de enumeração MatchType que especifica o tipo de correspondência aplicado ao parâmetro time.A MatchType enumeration value that specifies the type of match that is applied to the time parameter.
Retornos
Um PrincipalSearchResult<T> que contém um ou mais objetos do tipo de entidade de segurança apropriado ou uma coleção vazia, se nenhuma correspondência for encontrada.A PrincipalSearchResult<T> that contains one or more objects of the appropriate principal type, or an empty collection if no matches are found.
Comentários
O horário padrão será o UTC.The time will default to UTC. Se você quiser especificar a hora na hora local, especifique a Kind Propriedade do time objeto como DateTimeKind.Local .If you want to specify the time in local time, then specify the Kind property of the time object as DateTimeKind.Local.