ProtocolField.FieldReference Property
プロトコル ヘッダーで使用する通知フィールドへの参照を取得または設定します。
名前空間: Microsoft.SqlServer.Management.Nmo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)
構文
'宣言
Public Property FieldReference As String
public string FieldReference { get; set; }
public:
property String^ FieldReference {
String^ get ();
void set (String^ value);
}
/** @property */
public String get_FieldReference ()
/** @property */
public void set_FieldReference (String value)
public function get FieldReference () : String
public function set FieldReference (value : String)
プロパティ値
通知フィールドの名前を示す長さ 1 ~ 128 文字の String です。
解説
有効な FieldReference 値は、通知クラスに対して定義された任意の通知フィールドまたは計算フィールドか、DeliveryChannelName、SubscriberId、DeviceName、DeviceTypeName、DeviceAddress、SubscriberLocale のいずれかの組み込みフィールドです。
ProtocolField で FieldReference プロパティを使用しない場合は、代わりに SqlExpression プロパティを使用する必要があります。
使用例
次の例は、通知クラス フィールドを参照するプロトコル フィールドを定義する方法を示しています。
ProtocolField fileProtocolField1 =
new ProtocolField(fileProtocol, "LeavingFrom");
fileProtocolField1.FieldReference = "LeavingFrom";
fileProtocol.ProtocolFields.Add(fileProtocolField1);
Dim fileProtocolField1 As ProtocolField = _
New ProtocolField(fileProtocol, "LeavingFrom")
fileProtocolField1.FieldReference = "LeavingFrom"
fileProtocol.ProtocolFields.Add(fileProtocolField1)
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
ProtocolField Class
ProtocolField Members
Microsoft.SqlServer.Management.Nmo Namespace