Table of Contents

Class SslCertificateStore

Namespace
CENTREL.XIA.Configuration.Types
Assembly
CENTREL.XIA.Configuration.Types.dll

Represents an individual SSL certificate store.

public class SslCertificateStore : BaseTypeSection, IComparable<SslCertificateStore>
Inheritance
SslCertificateStore
Implements

Constructors

SslCertificateStore()

Initializes a new instance of the CENTREL.XIA.Configuration.Types.SslCertificateStore class.

public SslCertificateStore()

Properties

Certificates

Gets or sets the certificates found within this certificate store.

public SslCertificateCollection Certificates { get; set; }

Property Value

SslCertificateCollection

Description

Gets the description of the SSL certificate store. This field is not displayed in XML output.

public string Description { get; }

Property Value

string

DisplayName

Gets the display name of the store - for example "Trusted Root Certification Authorities".

public string DisplayName { get; set; }

Property Value

string

InternalName

Gets or sets the internal name used by Windows to identify the store - for example "MY".

public SslCertificateStoreName InternalName { get; set; }

Property Value

SslCertificateStoreName

Methods

CompareTo(SslCertificateStore)

Compares two SSL certificate stores to allow sorting alphabetically by store display name.

public int CompareTo(SslCertificateStore other)

Parameters

other SslCertificateStore

The CENTREL.XIA.Configuration.Types.SslCertificateStore to compare to.

Returns

int

The sort order of the two CENTREL.XIA.Configuration.Types.SslCertificateStore objects

ToString()

Returns the certificate store as a human readable string in the format "Displayname (InternalName)".

public override string ToString()

Returns

string

The certificate store as a human readable string.