EventFieldCollection.Add Method (EventField)
Adds an EventField to the end of the EventFieldCollection.
네임스페이스: Microsoft.SqlServer.Management.Nmo
어셈블리: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
구문
‘선언
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
)
매개 변수
- eventField
The EventField to add to the collection.
주의
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.
예
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)
스레드 보안
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.
플랫폼
개발 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
대상 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
참고 항목
참조
EventFieldCollection Class
EventFieldCollection Members
Microsoft.SqlServer.Management.Nmo Namespace