ServerDdlTriggerEventSet.Dirty Property

 

Applies To: SQL Server 2016 Preview

Gets or sets a Boolean property value that specifies whether the event set has been modified.

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

Syntax

public bool Dirty { get; set; }
public:
property bool Dirty {
    bool get();
    void set(bool value);
}
member Dirty : bool with get, set
Public Property Dirty As Boolean

Property Value

Type: System.Boolean

A Boolean value that specifies whether the event set has been modified.

If True, the event set has been modified.

If False (default), the event set has not been modified.

Examples

Legacy Code Example

Handling SMO Events

See Also

ServerDdlTriggerEventSet Class
Microsoft.SqlServer.Management.Smo Namespace
DDL Event Groups

Return to top