次の方法で共有


ProtocolField Constructor (NotificationClassProtocol, String)

親の NotificationClassProtocol およびフィールド名を使用して、ProtocolField クラスの新しいインスタンスを初期化します。

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

構文

'宣言
Public Sub New ( _
    notificationClassProtocol As NotificationClassProtocol, _
    name As String _
)
public ProtocolField (
    NotificationClassProtocol notificationClassProtocol,
    string name
)
public:
ProtocolField (
    NotificationClassProtocol^ notificationClassProtocol, 
    String^ name
)
public ProtocolField (
    NotificationClassProtocol notificationClassProtocol, 
    String name
)
public function ProtocolField (
    notificationClassProtocol : NotificationClassProtocol, 
    name : String
)

パラメータ

  • name
    プロトコル フィールドの名前を示す長さ 1 ~ 128 文字の String です。

    名前は変更できません。プロトコル フィールドの名前を変更するには、フィールドを削除してから、新しい名前を持つ新しいフィールドを追加する必要があります。

解説

フィールド名には、英字、数字、および特殊文字の _#@、および $ を含めることができます。また、Microsoft SQL Server の識別子規則に準拠する必要があります。SQL Server の識別子の詳細については、「識別子」を参照してください。

使用例

次の例は、プロトコル フィールドを定義して通知クラスのプロトコル定義に追加する方法を示しています。

ProtocolField smtpProtocolField1 = 
    new ProtocolField(smtpProtocol, "Subject");
smtpProtocolField1.SqlExpression = 
    "'Flight notification: '+CONVERT (NVARCHAR(30), GETDATE())";
smtpProtocol.ProtocolFields.Add(smtpProtocolField1);
Dim smtpProtocolField1 As ProtocolField = _
    New ProtocolField(smtpProtocol, "Subject")
smtpProtocolField1.SqlExpression = _
    "'Flight notification: '+CONVERT (NVARCHAR(30), GETDATE())"
smtpProtocol.ProtocolFields.Add(smtpProtocolField1)

プラットフォーム

開発プラットフォーム

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

対象プラットフォーム

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

参照

関連項目

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

その他の技術情報

Protocol/Fields/Field の FieldName 要素 (ADF)
配信プロトコルの名前とフィールドの指定