DeliveryChannel.Parent Property
この DeliveryChannel オブジェクトに対応する Instance オブジェクトを取得または設定します。
名前空間: Microsoft.SqlServer.Management.Nmo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)
構文
'宣言
Public Property Parent As Instance
public Instance Parent { get; set; }
public:
property Instance^ Parent {
Instance^ get ();
void set (Instance^ value);
}
/** @property */
public Instance get_Parent ()
/** @property */
public void set_Parent (Instance value)
public function get Parent () : Instance
public function set Parent (value : Instance)
プロパティ値
この DeliveryChannel オブジェクトに対応する Instance オブジェクトです。
解説
更新されたテキスト :2005 年 12 月 5 日
更新されたサンプル コード :2005 年 12 月 5 日
コンストラクタで親を設定する場合は、このプロパティを使用して親を設定しないでください。親を 2 回設定すると例外がスローされます。
既定のコンストラクタを使用する場合、その他のプロパティを設定する前に、このプロパティと Name プロパティを設定する必要があります。
使用例
次の例は、既定のコンストラクタを使用する場合に Parent プロパティを設定する方法を示しています。
// Define a delivery channel and set required properties.
DeliveryChannel customChannel = new DeliveryChannel();
customChannel.Name = "MyCustomChannel";
customChannel.Parent = myInstance;
customChannel.ProtocolName = "MyCustomProtocol";
' Define a delivery channel and set required properties.
Dim customChannel As DeliveryChannel = New DeliveryChannel()
customChannel.Name = "MyCustomChannel"
customChannel.Parent = myInstance
customChannel.ProtocolName = "MyCustomProtocol"
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
DeliveryChannel Class
DeliveryChannel Members
Microsoft.SqlServer.Management.Nmo Namespace