Executable Class

Definition

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
Executable
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.

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.

Applies to