ObjectEventSet Class

The ObjectEventSet object represents a SQL Server set of object events.

Inheritance Hierarchy

System.Object
  Microsoft.SqlServer.Management.Smo.EventSetBase
    Microsoft.SqlServer.Management.Smo.ObjectEventSet

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

Syntax

'Declaration
Public NotInheritable Class ObjectEventSet _
    Inherits EventSetBase
'Usage
Dim instance As ObjectEventSet
public sealed class ObjectEventSet : EventSetBase
public ref class ObjectEventSet sealed : public EventSetBase
[<SealedAttribute>]
type ObjectEventSet =  
    class 
        inherit EventSetBase 
    end
public final class ObjectEventSet extends EventSetBase

The ObjectEventSet type exposes the following members.

Constructors

  Name Description
Public method ObjectEventSet() Initializes a new instance of the ObjectEventSet class.
Public method ObjectEventSet(ObjectEvent) Initializes a new instance of the ObjectEventSet class with the specified set of event.
Public method ObjectEventSet(array<ObjectEvent[]) Initializes a new instance of the ObjectEventSet class with the specified set of events.
Public method ObjectEventSet(ObjectEventSet) Initializes a new instance of the ObjectEventSet class with a specified set of events.

Top

Properties

  Name Description
Public property Alter Gets or sets a Boolean property value that specifies whether the event is included in the event set. The event occurs when the properties of an object are modified.
Public property Drop Gets or sets a Boolean property value that specifies whether the event is included in the event set. The event occurs when an object is dropped.
Public property NumberOfElements Gets the number of events in the event set. (Overrides EventSetBase.NumberOfElements.)
Protected property Storage Gets or sets the bit array for event set storage. (Inherited from EventSetBase.)

Top

Methods

  Name Description
Public method Add(ObjectEvent) Adds an ObjectEvent object to the ObjectEventSet object.
Public methodStatic member Add(ObjectEventSet, ObjectEvent) Adds an ObjectEvent object to a ObjectEventSet.
Public method Copy Returns a copy of the ObjectEventSet object. (Overrides EventSetBase.Copy().)
Public method Equals (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Public method Remove Removes an event from the event set.
Public methodStatic member Subtract Subtracts a ObjectEvent from a [T:Microsoft.SqlServer.Management.Smo.ObjectEventSet.]
Public method ToString Returns a string that represents the ObjectEventSet object. (Overrides Object.ToString().)

Top

Operators

  Name Description
Public operatorStatic member Addition Creates an object event set by performing an addition operation on an ObjectEvent object and an ObjectEventSet object.
Public operatorStatic member Subtraction Creates an object event set by performing a subtraction operation on an ObjectEvent object and an ObjectEventSet object.

Top

Remarks

The events in the object event set are generated by various SMO objects that represent the SQL Server objects.

Thread Safety

Any public static (Shared in Microsoft Visual Basic) members of this type are safe for multithreaded operations. Any instance members are not guaranteed to be thread safe.

Examples

Handling SMO Events

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.SqlServer.Management.Smo Namespace