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.
Note: This API is now obsolete.
Gets the PendingChange objects from the repository with the specified IDs. Also gets information to download files.
Namespace: Microsoft.TeamFoundation.VersionControl.Client
Assembly: Microsoft.TeamFoundation.VersionControl.Client (in Microsoft.TeamFoundation.VersionControl.Client.dll)
Syntax
'Declaration
<ObsoleteAttribute("Method obsolete since TFS 2010. Please use VersionControlServer.QueryPendingSets, VersionControlServer.QueryShelvedChanges or Workspace.GetPendingChanges instead.")> _
Public Function GetPendingChanges ( _
pendingChangeIds As Integer(), _
includeDownloadInfo As Boolean _
) As PendingChange()
[ObsoleteAttribute("Method obsolete since TFS 2010. Please use VersionControlServer.QueryPendingSets, VersionControlServer.QueryShelvedChanges or Workspace.GetPendingChanges instead.")]
public PendingChange[] GetPendingChanges(
int[] pendingChangeIds,
bool includeDownloadInfo
)
[ObsoleteAttribute(L"Method obsolete since TFS 2010. Please use VersionControlServer.QueryPendingSets, VersionControlServer.QueryShelvedChanges or Workspace.GetPendingChanges instead.")]
public:
array<PendingChange^>^ GetPendingChanges(
array<int>^ pendingChangeIds,
bool includeDownloadInfo
)
[<ObsoleteAttribute("Method obsolete since TFS 2010. Please use VersionControlServer.QueryPendingSets, VersionControlServer.QueryShelvedChanges or Workspace.GetPendingChanges instead.")>]
member GetPendingChanges :
pendingChangeIds:int[] *
includeDownloadInfo:bool -> PendingChange[]
public function GetPendingChanges(
pendingChangeIds : int[],
includeDownloadInfo : boolean
) : PendingChange[]
Parameters
- pendingChangeIds
Type: array<System.Int32[]
An array of PendingChange IDs.
- includeDownloadInfo
Type: System.Boolean
True to get the information needed to download files. Specify false to save bandwidth, if downloading is not necessary.
Return Value
Type: array<Microsoft.TeamFoundation.VersionControl.Client.PendingChange[]
An array of PendingChange objects that match the specified IDs.
Remarks
If a PendingChange cannot be found for a specific ID, then the corresponding element in the 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.