Show / Hide Table of Contents

    Class CertificateInformation

    SSL certificate information.

    Inheritance
    Object
    CertificateInformation
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.ApiManagement.dll
    Syntax
    public class CertificateInformation

    Constructors

    CertificateInformation()

    Initializes a new instance of the CertificateInformation class.

    Declaration
    public CertificateInformation ();

    CertificateInformation(DateTime, String, String)

    Initializes a new instance of the CertificateInformation class.

    Declaration
    public CertificateInformation (DateTime expiry, string thumbprint, string subject);
    Parameters
    DateTime expiry

    Expiration date of the certificate. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.

    String thumbprint

    Thumbprint of the certificate.

    String subject

    Subject of the certificate.

    Properties

    Expiry

    Gets or sets expiration date of the certificate. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="expiry")]
    public DateTime Expiry { get; set; }
    Property Value
    DateTime

    Subject

    Gets or sets subject of the certificate.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="subject")]
    public string Subject { get; set; }
    Property Value
    String

    Thumbprint

    Gets or sets thumbprint of the certificate.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="thumbprint")]
    public string Thumbprint { get; set; }
    Property Value
    String

    Methods

    Validate()

    Validate the object.

    Declaration
    public virtual void Validate ();
    Exceptions
    ValidationException

    Thrown if validation fails

    Back to top Azure SDK for Net