System.Web.Security.SqlMembershipProvider.PasswordInfo.PasswordInfo C# (CSharp) Method

PasswordInfo() private method

private PasswordInfo ( string password, MembershipPasswordFormat passwordFormat, string passwordSalt, int failedPasswordAttemptCount, int failedPasswordAnswerAttemptCount, bool isApproved, DateTime lastLoginDate, DateTime lastActivityDate ) : System.Collections
password string
passwordFormat MembershipPasswordFormat
passwordSalt string
failedPasswordAttemptCount int
failedPasswordAnswerAttemptCount int
isApproved bool
lastLoginDate DateTime
lastActivityDate DateTime
return System.Collections
			internal PasswordInfo (
				string password,
				MembershipPasswordFormat passwordFormat,
				string passwordSalt,
				int failedPasswordAttemptCount,
				int failedPasswordAnswerAttemptCount,
				bool isApproved,
				DateTime lastLoginDate,
				DateTime lastActivityDate)
			{
				_password = password;
				_passwordFormat = passwordFormat;
				_passwordSalt = passwordSalt;
				_failedPasswordAttemptCount = failedPasswordAttemptCount;
				_failedPasswordAnswerAttemptCount = failedPasswordAnswerAttemptCount;
				_isApproved = isApproved;
				_lastLoginDate = lastLoginDate;
				_lastActivityDate = lastActivityDate;
			}
SqlMembershipProvider.PasswordInfo