adTempus API
ArcanaDevelopment.adTempus.Client Namespace / CredentialProfile Class / CredentialType Property


In This Topic
    CredentialType Property
    In This Topic
    The kind of credentials represented.
    Syntax
    'Declaration
     
    
    <CanBeNullAttribute()>
    Public Property CredentialType As String
    [CanBeNull()]
    public string CredentialType {get; set;}
    [CanBeNull()]
    public:
    property String^ CredentialType {
       String^ get();
       void set (    String^ value);
    }
    Remarks

    A CredentialProfile can represent login credentials for many kinds of systems (Windows, a Web server, etc.). The CredentialType indicates the type of login for which these credentials are indended.

    The following CredentialTypes are currently defined:

    (null or empty string) A Windows login
    ArcanaDevelopment.adTempus.SQLServerCredentials A database login for the DatabaseOperationTask. The database type does not need to be SQL Server, despite the name of the CredentialType (which is retained for backward compatibility). The CredentialSelector can be used to restrict the credentials to a particular database server/database name combination.
    ArcanaDevelopment.adTempus.WebCredentials Credentials for a Web server used by a WebRequestTask.
    See Also