NotificationField Constructor ()
NotificationField クラスの新しいインスタンスを初期化します。
名前空間: Microsoft.SqlServer.Management.Nmo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)
構文
'宣言
Public Sub New
public NotificationField ()
public:
NotificationField ()
public NotificationField ()
public function NotificationField ()
解説
更新されたテキスト :2005 年 12 月 5 日
更新されたサンプル コード :2005 年 12 月 5 日
既定のコンストラクタを使用する場合は、直ちに Name プロパティを設定してから、Parent プロパティを設定する必要があります。その後、必須の Type プロパティおよび DigestGrouping プロパティなど、その他のプロパティを設定できます。
使用例
次の例は、この既定のコンストラクタを使用して通知フィールドを作成し、通知クラスに追加する方法を示しています。
// 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)
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
NotificationField Class
NotificationField Members
Microsoft.SqlServer.Management.Nmo Namespace