共用方式為


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物件是由的、 FindProfilesByUserNameGetAllInactiveProfilesFindInactiveProfilesByUserName 方法建構並傳回為 的一ProfileProvider部分ProfileInfoCollectionGetAllProfiles

另請參閱

適用於

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

儲存在資料來源中的設定檔資訊和值的大小。

範例

如需在數據存放區中建立ProfileInfoCollectionProfileInfo使用者配置檔對象的實作範例ProfileProvider,請參閱實作配置檔提供者

備註

物件 ProfileInfo 可用來表示來自數據存放區之使用者配置檔的資訊,包括擷取或更新配置檔屬性的最後日期和時間、與配置檔相關聯的用戶名稱,以及配置檔是否為匿名或已驗證的使用者。

ProfileInfo物件是由的、 FindProfilesByUserNameGetAllInactiveProfiles和 方法ProfileProvider所建構並FindInactiveProfilesByUserName傳回。ProfileInfoCollectionGetAllProfiles

另請參閱

適用於