Queries the latest job history of the specified jobs.
Namespace:  Microsoft.TeamFoundation.Framework.Client
Assembly:  Microsoft.TeamFoundation.Client (in Microsoft.TeamFoundation.Client.dll)
Syntax
'Declaration
Public Function QueryLatestJobHistory ( _
    jobIds As IEnumerable(Of Guid) _
) As IList(Of TeamFoundationJobHistoryEntry)
public IList<TeamFoundationJobHistoryEntry> QueryLatestJobHistory(
    IEnumerable<Guid> jobIds
)
public:
virtual IList<TeamFoundationJobHistoryEntry^>^ QueryLatestJobHistory(
    IEnumerable<Guid>^ jobIds
) sealed
abstract QueryLatestJobHistory : 
        jobIds:IEnumerable<Guid> -> IList<TeamFoundationJobHistoryEntry> 
override QueryLatestJobHistory : 
        jobIds:IEnumerable<Guid> -> IList<TeamFoundationJobHistoryEntry> 
public final function QueryLatestJobHistory(
    jobIds : IEnumerable<Guid>
) : IList<TeamFoundationJobHistoryEntry>
Parameters
- jobIds 
 Type: System.Collections.Generic.IEnumerable<Guid>- An enumerable collection of Guid objects that represent the job IDs of the jobs to query. 
Return Value
Type: System.Collections.Generic.IList<TeamFoundationJobHistoryEntry>
A list of the latest TeamFoundationJobHistoryEntry objects in the index order of jobIds.
Implements
ITeamFoundationJobService.QueryLatestJobHistory(IEnumerable<Guid>)
.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.
See Also
Reference
TeamFoundationJobService Class