次の方法で共有


ProtocolField.Parent Property

プロトコル フィールドの親である NotificationClassProtocol オブジェクトを取得または設定します。

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

構文

'宣言
Public Property Parent As NotificationClassProtocol
public NotificationClassProtocol Parent { get; set; }
public:
property NotificationClassProtocol^ Parent {
    NotificationClassProtocol^ get ();
    void set (NotificationClassProtocol^ value);
}
/** @property */
public NotificationClassProtocol get_Parent ()

/** @property */
public void set_Parent (NotificationClassProtocol value)
public function get Parent () : NotificationClassProtocol

public function set Parent (value : NotificationClassProtocol)

プロパティ値

親である NotificationClassProtocol オブジェクトです。

解説

更新されたテキスト :2005 年 12 月 5 日

更新されたサンプル コード :2005 年 12 月 5 日

ProtocolField には、それぞれ親の NotificationClassProtocol があります。通常は、ProtocolField(NotificationClassProtocol,String) コンストラクタを使用して ProtocolField を作成する際に、親オブジェクトを指定します。

コンストラクタで親を設定する場合は、このプロパティを使用して親を設定しないでください。親を 2 回設定すると例外がスローされます。

使用例

次の例は、既定のコンストラクタを使用する場合に Parent プロパティを設定する方法を示しています。

// Define a protocol field and set properties.
ProtocolField fileProtocolField1 = new ProtocolField();
fileProtocolField1.Name = "LeavingFrom";
fileProtocolField1.Parent = fileProtocol;
fileProtocolField1.FieldReference = "LeavingFrom";
fileProtocol.ProtocolFields.Add(fileProtocolField1);
' Define a protocol field and set properties.
Dim fileProtocolField1 As ProtocolField = New ProtocolField()
fileProtocolField1.Name = "LeavingFrom"
fileProtocolField1.Parent = fileProtocol
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

その他の技術情報

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