다음을 통해 공유


DeliveryChannel.Parent Property

Gets or sets the Instance object for this DeliveryChannel object.

네임스페이스: Microsoft.SqlServer.Management.Nmo
어셈블리: Microsoft.SqlServer.Smo (in 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)

속성 값

The Instance object for this DeliveryChannel object.

주의

업데이트된 텍스트:2005년 12월 5일

업데이트된 예제 코드:2005년 12월 5일

If you set the parent in the constructor, do not set the parent using this property. Setting the parent twice throws an exception.

If you use the default constructor, you must set this property and the Name property before you can set other properties.

The following examples show how to set the Parent property when using the default constructor:

// 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"

스레드 보안

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

플랫폼

개발 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

대상 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

참고 항목

참조

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

관련 자료

배달 채널 정의
Notification Services 인스턴스 구성