다음을 통해 공유


ProfileInfo 생성자

정의

ProfileInfo 클래스의 인스턴스를 만듭니다.

오버로드

ProfileInfo()

ProfileInfo 클래스를 상속하는 클래스에 대한 ProfileInfo 개체의 인스턴스를 만듭니다.

ProfileInfo(String, Boolean, DateTime, DateTime, Int32)

지정된 속성 값을 사용하여 ProfileInfo 클래스의 인스턴스를 만듭니다.

ProfileInfo()

ProfileInfo 클래스를 상속하는 클래스에 대한 ProfileInfo 개체의 인스턴스를 만듭니다.

protected:
 ProfileInfo();
protected ProfileInfo ();
Protected Sub New ()

설명

System.Web.Profile.ProfileInfo 생성자는 코드에서 사용할 수 없습니다. 대신는 ProfileInfo.ProfileInfo합니다.

ProfileInfo 개체는 생성 하 고의 일부로 반환 되는 ProfileInfoCollection 하 여는 GetAllProfiles, GetAllInactiveProfiles, FindProfilesByUserName, 및 FindInactiveProfilesByUserName 의 메서드를 ProfileProvider.

추가 정보

적용 대상

ProfileInfo(String, Boolean, DateTime, DateTime, Int32)

지정된 속성 값을 사용하여 ProfileInfo 클래스의 인스턴스를 만듭니다.

public:
 ProfileInfo(System::String ^ username, bool isAnonymous, DateTime lastActivityDate, DateTime lastUpdatedDate, int size);
public ProfileInfo (string username, bool isAnonymous, DateTime lastActivityDate, DateTime lastUpdatedDate, int size);
new System.Web.Profile.ProfileInfo : string * bool * DateTime * DateTime * int -> System.Web.Profile.ProfileInfo
Public Sub New (username As String, isAnonymous As Boolean, lastActivityDate As DateTime, lastUpdatedDate As DateTime, size As Integer)

매개 변수

username
String

프로필의 사용자 이름입니다.

isAnonymous
Boolean

익명 사용자의 프로필을 나타내면 true이고, 인증된 사용자의 프로필을 나타내면 false입니다.

lastActivityDate
DateTime

프로필을 마지막으로 읽거나 업데이트한 날짜와 시간입니다.

lastUpdatedDate
DateTime

프로필을 마지막으로 업데이트한 날짜와 시간입니다.

size
Int32

데이터 소스에 저장된 프로필 정보와 값의 크기입니다.

예제

예는 ProfileProvider 구현을 만드는 ProfileInfoCollectionProfileInfo 사용자 프로필 데이터 저장소에 대 한 개체 참조 프로필 공급자를 구현합니다.

설명

ProfileInfo 개체는 마지막 날짜 및 시간 프로필 속성 되었거나 검색을 업데이트 하 고 프로필을 사용 하 여 연결 된 사용자 이름을 포함 하는 데이터 저장소에서 사용자 프로필에 대 한 정보를 나타내는 데 프로필 인지 여부를 익명 또는 인증 된 사용자입니다.

ProfileInfo 개체가 생성 되 고 반환을 ProfileInfoCollection 여는 GetAllProfiles, GetAllInactiveProfiles, FindProfilesByUserName, 및 FindInactiveProfilesByUserName 의 메서드는 ProfileProvider.

추가 정보

적용 대상