adTempus API
ArcanaDevelopment.adTempus.Client Namespace / Scheduler Class / GetSecurityCertificates Method
The OID of the credential profile representing the Windows user account for which certificates should be fetched.
Options for fetching the certificate. The options are a bitmask. The following values are defined:
1 The certificate data is returned in the ArcanaDevelopment.adTempus.Shared.SecurityCertificate. If this option is omitted, only metadata about the certificate is returned.
Set to 0 if not options are required.


In This Topic
    GetSecurityCertificates Method
    In This Topic
    Gets a collection of the X.509 server certificates installed on the adTempus server.
    Syntax
    'Declaration
     
    
    <NotNullAttribute()>
    Public Function GetSecurityCertificates( _
       ByVal credentialProfileOID As OID, _
       ByVal options As Integer _
    ) As ReadOnlyCollection(Of SecurityCertificate)
    [NotNull()]
    public ReadOnlyCollection<SecurityCertificate> GetSecurityCertificates( 
       OID credentialProfileOID,
       int options
    )
    [NotNull()]
    public:
    ReadOnlyCollection<SecurityCertificate^>^ GetSecurityCertificates( 
       OID^ credentialProfileOID,
       int options
    ) 

    Parameters

    credentialProfileOID
    The OID of the credential profile representing the Windows user account for which certificates should be fetched.
    options
    Options for fetching the certificate. The options are a bitmask. The following values are defined:
    1 The certificate data is returned in the ArcanaDevelopment.adTempus.Shared.SecurityCertificate. If this option is omitted, only metadata about the certificate is returned.
    Set to 0 if not options are required.

    Return Value

    The requested certificates.
    Remarks

    This method gets X.509 ("SSL certificates," "server certificates," etc.) from the certificate store on the adTempus server.

    If a credentialProfileOID is specified, the certificates from that user's certificate store will be returned.

    If no credentialProfileOID is specified, the certificates from the machine store will be returned.

    See Also