ConfigProperty.Minimum Property

 

Applies To: SQL Server 2016 Preview

Gets the maximum value to which the configuration option can be set.

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

Syntax

public int Minimum { get; }
public:
property int Minimum {
    int get();
}
member Minimum : int with get
Public ReadOnly Property Minimum As Integer

Property Value

Type: System.Int32

An Int32 value that specifies the minimum value to which the configuration option can be set.

Remarks

Some configuration options require values that are True or False. For these, the maximum is 0 and the minimum is –1.

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