Executable Class
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.
Defines an abstract class that provides the methods that all objects that are run by the run-time engine are required to inherit and implement.
public ref class Executable abstract : Microsoft::SqlServer::Dts::Runtime::DtsObject
public abstract class Executable : Microsoft.SqlServer.Dts.Runtime.DtsObject
type Executable = class
inherit DtsObject
Public MustInherit Class Executable
Inherits DtsObject
- Inheritance
- Derived
Remarks
The Executable abstract base class is inherited by the abstract base class DtsContainer, which is then inherited by the abstract base class EventsProvider. The EventsProvider class is subsequently inherited by the following containers that are used often in code.
ForEachLoop Class
ForLoop Class
Package Class
Sequence Class
TaskHost Class
Constructors
Executable() |
Initializes a new instance of the Executable class. |
Fields
m_executable |
The executable. |
Methods
Equals(Object) |
Determines whether two object instances are equal. (Inherited from DtsObject) |
Execute(Connections, Variables, IDTSEvents, IDTSLogging, Object) |
Executes the executable. |
GetHashCode() |
Returns the hash code for this instance. (Inherited from DtsObject) |
Validate(Connections, Variables, IDTSEvents, IDTSLogging) |
Verify that the executable will successfully execute by validating all its dependencies and other items before executing it. The component that implements this method is the component that is being validated. |