Utils.CheckConfigurationProperty<T> Method (String, T, T)

 

Checks the specified configuration property.

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

Syntax

[STraceConfigurationAttribute(SkipAutoTrace = true)]
public static void CheckConfigurationProperty<T>(
    string property,
    T configValue,
    T runValue
)
where T : IComparable
public:
generic<typename T>
where T : IComparable
[STraceConfigurationAttribute(SkipAutoTrace = true)]
static void CheckConfigurationProperty(
    String^ property,
    T configValue,
    T runValue
)
[<STraceConfigurationAttribute(SkipAutoTrace = true)>]
static member CheckConfigurationProperty<'T when 'T : IComparable> : 
        property:string *
        configValue:'T *
        runValue:'T -> unit
<STraceConfigurationAttribute(SkipAutoTrace := True)>
Public Shared Sub CheckConfigurationProperty(Of T As IComparable) (
    property As String,
    configValue As T,
    runValue As T
)

Parameters

  • property
    Type: System.String

    A string value that specifies the property.

  • configValue
    Type: T

    The configuration value of the generic type.

  • runValue
    Type: T

    The run value of the generic type.

See Also

Utils Class
Microsoft.SqlServer.Management.Dmf Namespace

Return to top