VersionControlServer.GetItems Method (ItemSpec, VersionSpec, DeletedState, ItemType, Boolean)
Gets an array of Item objects in the repository that match the specified path and version.
Namespace: Microsoft.TeamFoundation.VersionControl.Client
Assembly: Microsoft.TeamFoundation.VersionControl.Client (in Microsoft.TeamFoundation.VersionControl.Client.dll)
Syntax
'Declaration
Public Function GetItems ( _
itemSpec As ItemSpec, _
version As VersionSpec, _
deletedState As DeletedState, _
itemType As ItemType, _
includeDownloadInfo As Boolean _
) As ItemSet
public ItemSet GetItems(
ItemSpec itemSpec,
VersionSpec version,
DeletedState deletedState,
ItemType itemType,
bool includeDownloadInfo
)
public:
ItemSet^ GetItems(
ItemSpec^ itemSpec,
VersionSpec^ version,
DeletedState deletedState,
ItemType itemType,
bool includeDownloadInfo
)
member GetItems :
itemSpec:ItemSpec *
version:VersionSpec *
deletedState:DeletedState *
itemType:ItemType *
includeDownloadInfo:bool -> ItemSet
public function GetItems(
itemSpec : ItemSpec,
version : VersionSpec,
deletedState : DeletedState,
itemType : ItemType,
includeDownloadInfo : boolean
) : ItemSet
Parameters
itemSpec
Type: Microsoft.TeamFoundation.VersionControl.Client.ItemSpecThe item specifier for the item(s), may be server or local.
version
Type: Microsoft.TeamFoundation.VersionControl.Client.VersionSpecThe version of the item(s).
deletedState
Type: Microsoft.TeamFoundation.VersionControl.Client.DeletedStateA flag describing whether to return deleted items and/or non-deleted items.
itemType
Type: Microsoft.TeamFoundation.VersionControl.Client.ItemTypeA flag describing whether to return files and/or folders.
includeDownloadInfo
Type: System.BooleanTrue to get the information needed to download files. Specify false to save bandwidth if not necessary.
Return Value
Type: Microsoft.TeamFoundation.VersionControl.Client.ItemSet
An array of items matching the path.
Remarks
Only set includeDownloadInfo to true if you are going to be downloading the files using the objects that are returned. The call will be faster and require less bandwidth when includeDownloadInfo is false (default for overloads that don't specify it).
.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.