Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets an array of Item objects from repository, based on itemIds and changesetNumber.
Namespace: Microsoft.TeamFoundation.VersionControl.Client
Assembly: Microsoft.TeamFoundation.VersionControl.Client (in Microsoft.TeamFoundation.VersionControl.Client.dll)
Syntax
'Declaration
Public Function GetItems ( _
itemIds As Integer(), _
changesetNumber As Integer, _
options As GetItemsOptions _
) As Item()
public Item[] GetItems(
int[] itemIds,
int changesetNumber,
GetItemsOptions options
)
public:
array<Item^>^ GetItems(
array<int>^ itemIds,
int changesetNumber,
GetItemsOptions options
)
member GetItems :
itemIds:int[] *
changesetNumber:int *
options:GetItemsOptions -> Item[]
public function GetItems(
itemIds : int[],
changesetNumber : int,
options : GetItemsOptions
) : Item[]
Parameters
- itemIds
Type: array<System.Int32[]
Item ID.
- changesetNumber
Type: System.Int32
Changeset version of the item.
- options
Type: Microsoft.TeamFoundation.VersionControl.Client.GetItemsOptions
Options for the query.
Return Value
Type: array<Microsoft.TeamFoundation.VersionControl.Client.Item[]
An array of Item objects that match the parameters.
Remarks
If an item cannot be found for a specific itemIds and changesetNumber then the corresponding element in the item output array will be null.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.