adTempus API
ArcanaDevelopment.adTempus.Client Namespace / DataContext Class / GetCredentialProfiles Method / GetCredentialProfiles(String,String) Method
The profile type to fetch. Specify "*" for all types, an empty string ("") for Windows credentials, or the name of a credential type.
The profile selector/discriminator to use. Specify null or empty string when searching for Windows credentials.


In This Topic
    GetCredentialProfiles(String,String) Method
    In This Topic
    Fetches all Credential Profiles of the specified type.
    Syntax
    'Declaration
     
    
    <NotNullAttribute()>
    Public Overloads Function GetCredentialProfiles( _
       ByVal profileType As String, _
       ByVal credentialSelector As String _
    ) As CredentialProfileCollection
    [NotNull()]
    public CredentialProfileCollection GetCredentialProfiles( 
       string profileType,
       string credentialSelector
    )
    [NotNull()]
    public:
    CredentialProfileCollection^ GetCredentialProfiles( 
       String^ profileType,
       String^ credentialSelector
    ) 

    Parameters

    profileType
    The profile type to fetch. Specify "*" for all types, an empty string ("") for Windows credentials, or the name of a credential type.
    credentialSelector
    The profile selector/discriminator to use. Specify null or empty string when searching for Windows credentials.

    Return Value

    All Credential Profiles of the requested type for which the caller has at least List permission.
    See Also