Condividi tramite


EventClass Constructor ()

Initializes a new instance of the EventClass class.

Spazio dei nomi: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Sintassi

'Dichiarazione
Public Sub New
public EventClass ()
public:
EventClass ()
public EventClass ()
public function EventClass ()

Osservazioni

Testo aggiornato:5 dicembre 2005

Codice di esempio aggiornato:5 dicembre 2005

If you use the default constructor, you must immediately set the Name property and then set the Parent property. You also must set the FileGroup property.

Esempio

The following examples show how to use this default constructor. Because the default constructor does not set property defaults, you must specify the filegroup for the event class.

// Create an event class and set required properties.
EventClass flightEvents = new EventClass();
flightEvents.Name = "FlightEvents";
flightEvents.Parent = myApplication;
flightEvents.FileGroup = "PRIMARY";
' Create an event class and set required properties.
Dim flightEvents As EventClass = New EventClass()
flightEvents.Name = "FlightEvents"
flightEvents.Parent = myApplication
flightEvents.FileGroup = "PRIMARY"

Piattaforme

Piattaforme di sviluppo

Per un elenco delle piattaforme supportate, vedere Requisiti hardware e software per l'Installazione di SQL Server 2005.

Piattaforme di destinazione

Per un elenco delle piattaforme supportate, vedere Requisiti hardware e software per l'Installazione di SQL Server 2005.

Vedere anche

Riferimento

EventClass Class
EventClass Members
Microsoft.SqlServer.Management.Nmo Namespace

Altre risorse

Definizione delle classi di evento
EventClass Element (ADF)