Поделиться через


Свойство HasScript

Gets the Boolean value that specifies whether the condition has a script.

Пространство имен:  Microsoft.SqlServer.Management.Dmf
Сборка:  Microsoft.SqlServer.Dmf (в Microsoft.SqlServer.Dmf.dll)

Синтаксис

'Декларация
Public ReadOnly Property HasScript As Boolean
    Get
'Применение
Dim instance As Condition
Dim value As Boolean

value = instance.HasScript
public bool HasScript { get; }
public:
property bool HasScript {
    bool get ();
}
member HasScript : bool
function get HasScript () : boolean

Значение свойства

Тип: System. . :: . .Boolean
A Boolean value that specifies whether the condition has a script.
If True, the condition has a script. Otherwise, False.

Примеры

C#

System.Console.WriteLine(c.HasScript);

VB

System.Console.WriteLine(c.HasScript)