Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Adds an EventField to the end of the EventFieldCollection.
Namespace: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntax
'Declaration
Public Sub Add ( _
eventField As EventField _
)
public void Add (
EventField eventField
)
public:
void Add (
EventField^ eventField
)
public void Add (
EventField eventField
)
public function Add (
eventField : EventField
)
Parameter
- eventField
The EventField to add to the collection.
Hinweise
Each EventField must have a unique name.
Using this method, you add each EventField to the end of the collection. The order of the fields is maintained.
If you add event fields to an application after deploying the application, you must Update the instance to apply the changes.
Beispiel
The following examples show how to define an event field that cannot be null and then add it to the end of the collection of event fields:
// Add an orgin field to the end of the field collection
EventField eventOrgin =
new EventField(flightEvents, "LeavingFrom");
eventOrgin.Type = "nvarchar(6)";
eventOrgin.TypeModifier = "not null";
flightEvents.EventFields.Add(eventOrgin);
' Add an orgin field to the end of the field collection.
Dim eventOrgin As EventField = _
New EventField(flightEvents, "LeavingFrom")
eventOrgin.Type = "nvarchar(6)"
eventOrgin.TypeModifier = "not null"
flightEvents.EventFields.Add(eventOrgin)
Threadsicherheit
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Plattformen
Entwicklungsplattformen
Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.
Zielplattforme
Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.
Siehe auch
Verweis
EventFieldCollection Class
EventFieldCollection Members
Microsoft.SqlServer.Management.Nmo Namespace
Andere Ressourcen
Definieren von Kernereignisklassen-Eigenschaften
Field Element for EventClass/Schema (ADF)