Open this page in the API Guide

IAccountService.IsPasswordComplex Method

Determines whether the provided password meets the application's password complexity requirements.

Namespace:  Dundas.BI.AccountServices
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
bool IsPasswordComplex(
	string accountName,
	string password
)

Parameters

accountName
Type: System.String
The name of the account that the password is for.
password
Type: System.String
The password to test.

Return Value

Type: Boolean
true if the provided password meets the application's password complexity requirements; otherwise, false.
Exceptions
ExceptionCondition
ArgumentExceptionaccountName is null or only contains white space.
ArgumentNullExceptionpassword is null.
See Also