다음을 통해 공유


ProfileProvider.DeleteInactiveProfiles 메서드

정의

파생 클래스에서 재정의될 때 마지막 작업 날짜가 지정된 날짜 이전인 프로필에 대한 모든 사용자 프로필 데이터를 삭제합니다.

public:
 abstract int DeleteInactiveProfiles(System::Web::Profile::ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate);
public abstract int DeleteInactiveProfiles (System.Web.Profile.ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate);
abstract member DeleteInactiveProfiles : System.Web.Profile.ProfileAuthenticationOption * DateTime -> int
Public MustOverride Function DeleteInactiveProfiles (authenticationOption As ProfileAuthenticationOption, userInactiveSinceDate As DateTime) As Integer

매개 변수

authenticationOption
ProfileAuthenticationOption

ProfileAuthenticationOption 값 중 하나로, 삭제되는 프로필이 익명인지, 인증되었는지 또는 두 형식 모두인지를 지정합니다.

userInactiveSinceDate
DateTime

사용자 프로필이 비활성 상태인지 식별하는 DateTime입니다. 사용자 프로필의 LastActivityDate 값이 이 일시이거나 그 이전인 경우 해당 프로필은 비활성으로 간주됩니다.

반환

데이터 소스에서 삭제된 프로필 수입니다.

예제

다음 코드 예제에서는 구현에 대 한 메서드 시그니처를 DeleteInactiveProfiles 메서드. 전체 예제 ProfileProvider 구현을 참조 방법: 프로필 공급자 예제 빌드 및 실행합니다.

public override int DeleteInactiveProfiles(
    ProfileAuthenticationOption authenticationOption,
    DateTime userInactiveSinceDate)
{
    return 0;
}
Public Overrides Function DeleteInactiveProfiles( _
ByVal authenticationOption As ProfileAuthenticationOption, _
ByVal userInactiveSinceDate As DateTime) As Integer

  Return 0
End Function

설명

DeleteInactiveProfiles 메서드를 사용 하 여 데이터 원본에서 사용 되지 않는 프로필 데이터를 제거 하 합니다. 에 대 한 데이터만 applicationName 구성에 지정 된 파일이 제거 됩니다. authenticationOption 매개 변수는 익명 프로필 프로필의 경우에 인증 되었는지 여부를 지정 또는 모든 프로필 검색 됩니다. 프로필을 LastActivityDate 또는 지정 된 이전에 발생 userInactiveSinceDate 매개 변수 값이 삭제 됩니다.

적용 대상

추가 정보