Class SqlServerSecurityProperties
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the server security properties of a SQL instance.
public class SqlServerSecurityProperties : BypassSection
- Inheritance
-
SqlServerSecurityProperties
- Inherited Members
Constructors
SqlServerSecurityProperties()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.SqlServerSecurityProperties class.
public SqlServerSecurityProperties()
Properties
AuditLevel
Gets or sets the login audit level.
public SqlAuditLevel AuditLevel { get; set; }
Property Value
AuditLevelString
Gets or sets the login audit level as a human readable string.
public string AuditLevelString { get; set; }
Property Value
C2AuditTracingEnabled
Gets or sets whether C2 audit tracing is enabled.
public BooleanOption C2AuditTracingEnabled { get; set; }
Property Value
CommonCriteriaComplianceEnabled
Gets or sets whether common criteria compliance is enabled.
public BooleanOption CommonCriteriaComplianceEnabled { get; set; }
Property Value
CrossDatabaseOwnershipChaining
Gets or sets whether cross database ownership chaining is enabled.
public BooleanOption CrossDatabaseOwnershipChaining { get; set; }
Property Value
IsProxyAccountEnabled
Gets or sets whether the proxy account is enabled.
public BooleanOption IsProxyAccountEnabled { get; set; }
Property Value
LoginMode
Gets or sets the login mode of the server.
public SqlServerLoginMode LoginMode { get; set; }
Property Value
LoginModeString
Gets or sets the login mode of the server as a human readable string.
public string LoginModeString { get; set; }
Property Value
ProxyAccountName
Gets or sets the name of the proxy account if enabled.
public string ProxyAccountName { get; set; }
Property Value
Methods
GetDisplayValue(SqlAuditLevel)
Returns the specified login audit level as a human readable string.
public static string GetDisplayValue(SqlAuditLevel auditLevel)
Parameters
auditLevel
SqlAuditLevelThe login audit level.
Returns
- string
The specified login audit level as a human readable string.
GetDisplayValue(SqlServerLoginMode)
Returns the specified login mode as a human readable string.
public static string GetDisplayValue(SqlServerLoginMode loginMode)
Parameters
loginMode
SqlServerLoginModeThe login mode.
Returns
- string
The specified login mode as a human readable string.
ToString()
Returns the login mode.
public override string ToString()
Returns
- string
the login mode.