DtsContainer.Parent Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the parent container. The value is read-only.
public:
property Microsoft::SqlServer::Dts::Runtime::DtsContainer ^ Parent { Microsoft::SqlServer::Dts::Runtime::DtsContainer ^ get(); };
[System.ComponentModel.Browsable(false)]
public Microsoft.SqlServer.Dts.Runtime.DtsContainer Parent { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Parent : Microsoft.SqlServer.Dts.Runtime.DtsContainer
Public ReadOnly Property Parent As DtsContainer
Property Value
Returns the DtsContainer object that is the parent of the current DtsContainer. Returns NULL if there is no parent.
- Attributes
Remarks
A package that runs other packages is called the parent package, and the packages that a parent workflow runs are considered its child packages. If this container is a child, the return value contains the parent package. If the current container is the package, this property returns NULL
.