Class SqlServerProperties
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the server properties of a SQL instance.
public class SqlServerProperties : BaseTypeSection
- Inheritance
-
SqlServerProperties
Constructors
SqlServerProperties()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.SqlServerProperties class.
public SqlServerProperties()
Properties
Advanced
Gets or sets the advanced properties of the SQL instance.
public SqlServerAdvancedProperties Advanced { get; set; }
Property Value
Connections
Gets or sets the connections properties of the SQL instance.
public SqlServerConnectionsProperties Connections { get; set; }
Property Value
DatabaseSettings
Gets or sets the database properties of the SQL instance. This only applies to on-premises SQL Server installations.
public SqlServerDatabaseSettingsProperties DatabaseSettings { get; set; }
Property Value
General
Gets or sets the general properties of the SQL instance.
public SqlServerGeneralProperties General { get; set; }
Property Value
Memory
Gets or sets the memory properties of the SQL instance. This only applies to on-premises SQL Server installations.
public SqlServerMemoryProperties Memory { get; set; }
Property Value
Permissions
Gets or sets the server permissions. This only applies to on-premises installations of SQL Server.
public SqlPermissions Permissions { get; set; }
Property Value
Processors
Gets or sets the server processors properties of the SQL instance. This only applies to on-premises SQL Server installations.
public SqlServerProcessorsProperties Processors { get; set; }
Property Value
Security
Gets or sets the security properties of the SQL instance. This only applies to on-premises SQL Server installations.
public SqlServerSecurityProperties Security { get; set; }
Property Value
SurfaceAreaConfiguration
Gets or sets the surface area configuration of a SQL instance.
public SqlSurfaceAreaConfiguration SurfaceAreaConfiguration { get; set; }
Property Value
Methods
FromXml(string)
Returns a CENTREL.XIA.Configuration.Types.SqlServerProperties class from the specified XML.
public static SqlServerProperties FromXml(string xml)
Parameters
xml
stringThe XML representation of the object.
Returns
- SqlServerProperties
A CENTREL.XIA.Configuration.Types.SqlServerProperties class.