adTempus API
ArcanaDevelopment.adTempus.Client Namespace / Scheduler Class / ValidateLoginCredentials Method
The Windows account user ID (including domain if appropriate).
The Windows account password.
On return, contains error message(s) if validation failed.


In This Topic
    ValidateLoginCredentials Method (Scheduler)
    In This Topic
    Validates Windows login credentials.
    Syntax
    'Declaration
     
    
    Public Function ValidateLoginCredentials( _
       ByVal UserID As String, _
       ByVal Password As String, _
       ByRef messages As MessageCollection _
    ) As Boolean
    public bool ValidateLoginCredentials( 
       string UserID,
       string Password,
       out MessageCollection messages
    )
    public:
    bool ValidateLoginCredentials( 
       String^ UserID,
       String^ Password,
       [Out] MessageCollection^ messages
    ) 

    Parameters

    UserID
    The Windows account user ID (including domain if appropriate).
    Password
    The Windows account password.
    messages
    On return, contains error message(s) if validation failed.

    Return Value

    True if the credentials are valid; False otherwise.
    See Also