Table of Contents

Class SqlCredential

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

Represents a SQL credential.

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

Constructors

SqlCredential()

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

public SqlCredential()

Properties

DateCreated

Gets or sets the date and time that the credential was created.

public DateTime DateCreated { get; set; }

Property Value

DateTime

DateLastModified

Gets or sets the date and time that the credential was last modified.

public DateTime DateLastModified { get; set; }

Property Value

DateTime

Identity

Gets or sets the identity of the credential.

public string Identity { get; set; }

Property Value

string

Name

Gets or sets the name of the credential.

public string Name { get; set; }

Property Value

string

ProviderName

Gets or sets the encryption provider name if configured.

public string ProviderName { get; set; }

Property Value

string

UseEncryptionProvider

Gets or sets whether to use an encryption provider.

public BooleanOption UseEncryptionProvider { get; set; }

Property Value

BooleanOption

Methods

Clone()

Returns a CENTREL.XIA.Configuration.Types.SqlCredential cloned from this object.

public SqlCredential Clone()

Returns

SqlCredential

A CENTREL.XIA.Configuration.Types.SqlCredential.

CompareTo(SqlCredential)

Compares two CENTREL.XIA.Configuration.Types.SqlCredential objects to allow sorting alphabetically by name.

public int CompareTo(SqlCredential other)

Parameters

other SqlCredential

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

Returns

int

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