共用方式為


ObjectReferenceTracker.SetListInfo Method

This method allows you to provide metadata for an existing reference list.

命名空間: Microsoft.SqlServer.Dts.Runtime
組件: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)

語法

'宣告
Public Sub SetListInfo ( _
    refListID As Integer, _
    usageLocation As String, _
    usageDescription As String _
)
public void SetListInfo (
    int refListID,
    string usageLocation,
    string usageDescription
)
public:
void SetListInfo (
    int refListID, 
    String^ usageLocation, 
    String^ usageDescription
)
public void SetListInfo (
    int refListID, 
    String usageLocation, 
    String usageDescription
)
public function SetListInfo (
    refListID : int, 
    usageLocation : String, 
    usageDescription : String
)

參數

  • refListID
    The list ID in which the object is currently located.
  • usageLocation
    The location where the object is used.
  • usageDescription
    A description that explains where the object is being used.

備註

After a new reference list is created, this method should be used to set the initial metadata. It is unlikely that the usageLocation property will change, but it possible to update both usageLocation and usageDescription properties as often as necessary.

The usageLocation is usually the name of the task or component that owns the list. This usageDescription is intended to give more detailed descriptions of how the objects in the list are used.

The refListID parameter is created when the list is newly generated using the AddReference method. The AddReference method returns to you a refListID, and it contains the ID of the newly created list. This returned refListID can be used in subsequent calls to add more references to the same list, remove references to the list, destroy a list, or when using the SetListInfo method.

執行緒安全性

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

平台

開發平台

如需受支援的平台清單,請參閱<安裝 SQL Server 2005 的硬體和軟體需求>。

目標平台

如需受支援的平台清單,請參閱<安裝 SQL Server 2005 的硬體和軟體需求>。

請參閱

參考

ObjectReferenceTracker Class
ObjectReferenceTracker Members
Microsoft.SqlServer.Dts.Runtime Namespace