EventClass Constructor ()
Initializes a new instance of the EventClass class.
Пространство имен: Microsoft.SqlServer.Management.Nmo
Сборка: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Синтаксис
'Декларация
Public Sub New
public EventClass ()
public:
EventClass ()
public EventClass ()
public function EventClass ()
Замечания
Изменения текста5 декабря 2005 г.
Изменения образцов кода5 декабря 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.
Пример
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"
Платформы
Платформы разработки
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
Целевые платформы
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
См. также
Справочник
EventClass Class
EventClass Members
Microsoft.SqlServer.Management.Nmo Namespace