ConfigProperty.IsAdvanced Property

 

Applies To: SQL Server 2016 Preview

Gets the Boolean property value that specifies whether the configuration option is an advanced option.

Namespace:   Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

public bool IsAdvanced { get; }
public:
property bool IsAdvanced {
    bool get();
}
member IsAdvanced : bool with get
Public ReadOnly Property IsAdvanced As Boolean

Property Value

Type: System.Boolean

A Boolean value that specifies whether the configuration option is an advanced option.

If True, the configuration option is advanced.

If False (default), the configuration option is basic and not advanced.

Remarks

The configuration options are divided into two groups, advanced and basic. The advanced options require a deeper understanding of Microsoft SQL Server and are not available without first setting the ShowAdvancedOptions property configuration option to True.

Examples

Legacy Code Example

Configuring SQL Server in SMO

See Also

ConfigProperty Class
Microsoft.SqlServer.Management.Smo Namespace
Server Configuration Options (SQL Server)

Return to top