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
DateLastModified
Gets or sets the date and time that the credential was last modified.
public DateTime DateLastModified { get; set; }
Property Value
Identity
Gets or sets the identity of the credential.
public string Identity { get; set; }
Property Value
Name
Gets or sets the name of the credential.
public string Name { get; set; }
Property Value
ProviderName
Gets or sets the encryption provider name if configured.
public string ProviderName { get; set; }
Property Value
UseEncryptionProvider
Gets or sets whether to use an encryption provider.
public BooleanOption UseEncryptionProvider { get; set; }
Property Value
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
SqlCredentialThe CENTREL.XIA.Configuration.Types.SqlCredential to compare to.
Returns
- int
The sort order of the two CENTREL.XIA.Configuration.Types.SqlCredential objects.