ScriptTask::EntryPoint Property

 

Gets or sets the name of the class that is executed as the entry point.

Namespace:   Microsoft.SqlServer.Dts.Tasks.ScriptTask
Assembly:  Microsoft.SqlServer.ScriptTask (in Microsoft.SqlServer.ScriptTask.dll)

public:
property String^ EntryPoint {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The name of the class that is executed as the entry point to the code.

The class that is executed can be changed by using the EntryPoint property. For more information, see Coding and Debugging the Script Task.

The following code sample, implemented in a console application, adds a ScriptTask to the package and displays the default values of some of its properties, including the EntryPoint property.

No code example is currently available or this language may not be supported.
Return to top
Show: