 | 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.
Namespace: Ignition.Crm.AccountManagementAssembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.28229
Syntaxpublic bool DoesPasswordMeetComplexityRequirements(
string password
)
Public Function DoesPasswordMeetComplexityRequirements (
password As String
) As Boolean
public:
virtual bool DoesPasswordMeetComplexityRequirements(
String^ password
) sealed
abstract DoesPasswordMeetComplexityRequirements :
password : string -> bool
override DoesPasswordMeetComplexityRequirements :
password : string -> bool Parameters
- password String
- Password to validate
Return Value
Booleantrue if the password meets the complexity requirements; otherwise false
RemarksNot all versions of netFORUM support specifying a required password complexity. For those versions, this method will always return true.
See Also