Partager via


Énumération DTSObjectReferenceType

Specifies the types of objects that the ObjectReferenceTracker class will provide impact analysis for. This enumeration is used by the EnumReferencedObjects class, which in turn is used by the Package class in its FindReferencedObjects method.

Espace de noms :  Microsoft.SqlServer.Dts.Runtime
Assembly :  Microsoft.SqlServer.ManagedDTS (dans Microsoft.SqlServer.ManagedDTS.dll)

Syntaxe

'Déclaration
Public Enumeration DTSObjectReferenceType
'Utilisation
Dim instance As DTSObjectReferenceType
public enum DTSObjectReferenceType
public enum class DTSObjectReferenceType
type DTSObjectReferenceType
public enum DTSObjectReferenceType

Membres

Nom de membre Description
VariableReadOnly A read-only variable.
VariableReadWrite A read/write variable.
Connection A connection.

Notes

A run-time task or pipeline component that uses variables or collections uses the AddReference method to create a reference list of objects. You also need to provide a usage location and description for the list by calling SetListInfo. For example, a task with a single variable would use its name as the location information and a description of what the variable is used for as the usage description.

Tasks or components that make different uses of variables or connections may create as many separate reference lists as necessary. For example, the Conditional Split component uses variables in expressions on outputs, and you can create a separate reference list for each output expression that uses variables. You set the component name as the usage location, and then include the expression and where it is found in the description. If the same variable is used in multiple expressions, each usage location is tracked by the system.