次の方法で共有


NotificationFieldCollection.Add Method (NotificationField, Int32)

NotificationFieldCollection の指定された位置に NotificationField オブジェクトを追加します。

名前空間: Microsoft.SqlServer.Management.Nmo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)

構文

'宣言
Public Sub Add ( _
    notificationField As NotificationField, _
    insertAtPosition As Integer _
)
public void Add (
    NotificationField notificationField,
    int insertAtPosition
)
public:
void Add (
    NotificationField^ notificationField, 
    int insertAtPosition
)
public void Add (
    NotificationField notificationField, 
    int insertAtPosition
)
public function Add (
    notificationField : NotificationField, 
    insertAtPosition : int
)

パラメータ

  • insertAtPosition
    NotificationField オブジェクトを追加する、コレクション内の 0 から始まる位置を示す Int32 です。

解説

このメソッドを使用すると、通知フィールド リスト内の特定の位置に通知フィールドを挿入できます。各通知フィールドは、テーブルの列になります。通知データの送信方法によっては、列の順序が重要になる場合があります。

現在その位置にある通知フィールドと、後続のすべての通知フィールドが、リスト内の 1 つ下の位置に移動します。

インスタンスを配置した後に NotificationField オブジェクトを追加した場合は、インスタンスに対して Update を実行して変更を適用する必要があります。

使用例

次の例は、通知クラスの通知フィールドのコレクションの 2 番目のフィールドとして通知フィールドを追加する方法を示しています。

// Define a Price field and add it at position 1 in the collection
NotificationField notificationPrice = 
    new NotificationField(flightNotifications, "Price");
notificationPrice.Type = "float";
flightNotifications.NotificationFields.Add(notificationPrice, 1);
' Define a Price field and add it at position 1 
' in the collection.
Dim notificationPrice As NotificationField = _
    New NotificationField(flightNotifications, "Price")
notificationPrice.Type = "float"
flightNotifications.NotificationFields.Add( _
    notificationPrice, 1)

スレッド セーフ

この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。

プラットフォーム

開発プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

対象プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

参照

関連項目

NotificationFieldCollection Class
NotificationFieldCollection Members
Microsoft.SqlServer.Management.Nmo Namespace
Instance.Update Method

その他の技術情報

通知スキーマの定義
Schema/Fields の Field 要素 (ADF)