[This is preliminary documentation and is subject to change.]

Authenticates a given account name and password against the LDAP server specified in the LdapAuthenticationString in the web.config

Namespace:  OfficeClip.DBLayer.Account
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public bool IsValidAccount(
	string accountName,
	string accountPassword
)
Visual Basic (Declaration)
Public Function IsValidAccount ( _
	accountName As String, _
	accountPassword As String _
) As Boolean
Visual C++
public:
bool IsValidAccount(
	String^ accountName, 
	String^ accountPassword
)

Parameters

accountName
Type: System..::.String
Account name on the LDAP Server
accountPassword
Type: System..::.String
password corresponding to the Account Name

Return Value

True if successful, False otherwise.

See Also