ProfileProvider.GetNumberOfInactiveProfiles 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
파생 클래스에서 재정의될 때 마지막 작업 날짜가 지정된 날짜이거나 그 이전인 프로필의 수를 반환합니다.
public:
abstract int GetNumberOfInactiveProfiles(System::Web::Profile::ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate);
public abstract int GetNumberOfInactiveProfiles (System.Web.Profile.ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate);
abstract member GetNumberOfInactiveProfiles : System.Web.Profile.ProfileAuthenticationOption * DateTime -> int
Public MustOverride Function GetNumberOfInactiveProfiles (authenticationOption As ProfileAuthenticationOption, userInactiveSinceDate As DateTime) As Integer
매개 변수
- authenticationOption
- ProfileAuthenticationOption
ProfileAuthenticationOption 값 중 하나로, 반환되는 프로필이 익명인지, 인증되었는지 또는 두 형식 모두인지를 지정합니다.
- userInactiveSinceDate
- DateTime
사용자 프로필이 비활성 상태인지 식별하는 DateTime입니다. 사용자 프로필의 LastActivityDate가 이 일시이거나 그 이전인 경우 해당 프로필은 비활성으로 간주됩니다.
반환
마지막 작업 날짜가 지정된 날짜이거나 그 이전인 프로필의 수입니다.
예제
다음 코드 예제에서는 구현에 대 한 메서드 시그니처를 GetNumberOfInactiveProfiles 메서드. 전체 예제 ProfileProvider 구현을 참조 방법: 프로필 공급자 예제 빌드 및 실행합니다.
public override int GetNumberOfInactiveProfiles(
ProfileAuthenticationOption authenticationOption,
DateTime userInactiveSinceDate)
{
return 0;
}
Public Overrides Function GetNumberOfInactiveProfiles( _
ByVal authenticationOption As ProfileAuthenticationOption, _
ByVal userInactiveSinceDate As DateTime) As Integer
Return 0
End Function
설명
GetNumberOfInactiveProfiles 메서드 모든 사용 되지 않는 사용자 프로필의 수를 검색 하는 합니다. 에 대 한 데이터만 applicationName
구성에 지정 된 파일이 반환 됩니다.
authenticationOption
매개 변수는 익명 프로필 프로필의 경우에 인증 되었는지 여부를 지정 또는 모든 프로필 검색 됩니다. 검색된 된 프로필을 사용 하 여 프로필을 LastActivityDate 같거나 지정 된 이전에 발생 하는 userInactiveSinceDate
매개 변수 값이 계산 됩니다.
적용 대상
추가 정보
.NET