Condividi tramite


NotificationField Constructor ()

Initializes a new instance of the NotificationField class.

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

Sintassi

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

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 can then set other properties, such as the required Type and DigestGrouping properties.

Esempio

The following examples show how to use this default constructor to create a notification field and add it to a notification class:

// Create a notification field and set properties.
NotificationField notificationOrgin = new NotificationField();
notificationOrgin.Name = "LeavingFrom";
notificationOrgin.Parent = flightNotifications;
notificationOrgin.Type = "nvarchar(6)";
notificationOrgin.DigestGrouping = false;
flightNotifications.NotificationFields.Add(notificationOrgin);
' Create a notification field and set properties.
Dim notificationOrgin As NotificationField = New NotificationField()
notificationOrgin.Name = "LeavingFrom"
notificationOrgin.Parent = flightNotifications
notificationOrgin.Type = "nvarchar(6)"
notificationOrgin.DigestGrouping = False
flightNotifications.NotificationFields.Add(notificationOrgin)

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

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