Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Gets an array of ExtendedItem objects in the repository that match the specified criteria, for each ItemSpec.
Namespace: Microsoft.TeamFoundation.VersionControl.Client
Assembly: Microsoft.TeamFoundation.VersionControl.Client (in Microsoft.TeamFoundation.VersionControl.Client.dll)
Syntax
'Declaration
Public Function GetExtendedItems ( _
itemSpecs As ItemSpec(), _
deletedState As DeletedState, _
itemType As ItemType _
) As ExtendedItem()()
public ExtendedItem[][] GetExtendedItems(
ItemSpec[] itemSpecs,
DeletedState deletedState,
ItemType itemType
)
public:
array<array<ExtendedItem^>^>^ GetExtendedItems(
array<ItemSpec^>^ itemSpecs,
DeletedState deletedState,
ItemType itemType
)
member GetExtendedItems :
itemSpecs:ItemSpec[] *
deletedState:DeletedState *
itemType:ItemType -> ExtendedItem[][]
public function GetExtendedItems(
itemSpecs : ItemSpec[],
deletedState : DeletedState,
itemType : ItemType
) : ExtendedItem[][]
Parameters
- itemSpecs
Type: array<Microsoft.TeamFoundation.VersionControl.Client.ItemSpec[]
The item specifiers for the item(s), may be server or local.
- deletedState
Type: Microsoft.TeamFoundation.VersionControl.Client.DeletedState
A flag describing whether to return deleted items and/or non-deleted items.
- itemType
Type: Microsoft.TeamFoundation.VersionControl.Client.ItemType
A flag describing whether to return files and/or folders.
Return Value
Type: array<array<Microsoft.TeamFoundation.VersionControl.Client.ExtendedItem[][]
An array containing the matching ExtendedItem instances associated with each specified ItemSpec.
Remarks
If the 'path' argument is a file, returns a set of items containing just that file. If the 'path' is a folder, returns a set of items containing all items in that folder. If the 'path' contains a wildcard character, returns a set of items in the specified folder that match the wildcard.
.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.