NotificationFieldCollection.Add Method (NotificationField, String)
NotificationFieldCollection 内の指定された通知フィールドの前に NotificationField オブジェクトを追加します。
名前空間: Microsoft.SqlServer.Management.Nmo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)
構文
'宣言
Public Sub Add ( _
notificationField As NotificationField, _
insertAtColumnName As String _
)
public void Add (
NotificationField notificationField,
string insertAtColumnName
)
public:
void Add (
NotificationField^ notificationField,
String^ insertAtColumnName
)
public void Add (
NotificationField notificationField,
String insertAtColumnName
)
public function Add (
notificationField : NotificationField,
insertAtColumnName : String
)
パラメータ
- notificationField
コレクションに追加する NotificationField です。
- insertAtColumnName
通知フィールドの名前を示す String です。新しい通知フィールドは、このフィールドの前に挿入されます。
解説
このメソッドを使用すると、通知フィールド リスト内の特定の位置に通知フィールドを挿入できます。各通知フィールドは、テーブルの列になります。通知データの送信方法によっては、列の順序が重要になる場合があります。
インスタンスを配置した後に NotificationField オブジェクトを追加した場合は、インスタンスに対して Update を実行して変更を適用する必要があります。
使用例
次の例は、通知クラスの通知フィールドのコレクション内にある Price フィールドの前に通知フィールドを追加する方法を示しています。
// Define a GoingTo field and add it before the Price field
NotificationField notificationDestination =
new NotificationField(flightNotifications, "GoingTo");
notificationDestination.Type = "nvarchar(6)";
flightNotifications.NotificationFields.Add(
notificationDestination, "Price");
' Define a GoingTo field and add it before the Price field.
Dim notificationDestination As NotificationField = _
New NotificationField(flightNotifications, "GoingTo")
notificationDestination.Type = "nvarchar(6)"
flightNotifications.NotificationFields.Add( _
notificationDestination, "Price")
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
NotificationFieldCollection Class
NotificationFieldCollection Members
Microsoft.SqlServer.Management.Nmo Namespace
Instance.Update Method