NetForumAuthenticationManagerDoesPasswordMeetComplexityRequirements Method

Determines whether a password meets the complexity requirements defined for external customers in netFORUM. This serves as a litmus test for whether the password will meet NetFORUM's password strength requirements, but does not take into account other password strength policies such as not repeating previous passwords, and ensuring the the password does not contain the customer's username.

Definition

Namespace: Ignition.Crm.AccountManagement
Assembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
C#
public bool DoesPasswordMeetComplexityRequirements(
	string password
)

Parameters

password  String
Password to validate

Return Value

Boolean
true if the password meets the complexity requirements; otherwise false

Remarks

Not all versions of netFORUM support specifying a required password complexity. For those versions, this method will always return true.

See Also