TeamProjectCollectionWebService.GetServicingDetails Method

Retrieves log entries for a servicing job.

Namespace:  Microsoft.TeamFoundation.Server.Core.WebServices
Assembly:  Microsoft.TeamFoundation.Server.Core (in Microsoft.TeamFoundation.Server.Core.dll)

Syntax

'Declaration
<WebMethodAttribute> _
Public Function GetServicingDetails ( _
    jobId As Guid, _
    queueTime As DateTime, _
    filterOptions As Integer, _
    minDetailId As Long, _
    <OutAttribute> ByRef complete As Boolean _
) As List(Of ServicingStepDetail)
[WebMethodAttribute]
public List<ServicingStepDetail> GetServicingDetails(
    Guid jobId,
    DateTime queueTime,
    int filterOptions,
    long minDetailId,
    out bool complete
)
[WebMethodAttribute]
public:
List<ServicingStepDetail^>^ GetServicingDetails(
    Guid jobId, 
    DateTime queueTime, 
    int filterOptions, 
    long long minDetailId, 
    [OutAttribute] bool% complete
)
[<WebMethodAttribute>]
member GetServicingDetails : 
        jobId:Guid * 
        queueTime:DateTime * 
        filterOptions:int * 
        minDetailId:int64 * 
        complete:bool byref -> List<ServicingStepDetail> 
public function GetServicingDetails(
    jobId : Guid, 
    queueTime : DateTime, 
    filterOptions : int, 
    minDetailId : long, 
    complete : boolean
) : List<ServicingStepDetail>

Parameters

  • jobId
    Type: System.Guid

    The ID of the job to retrieve details for.

  • queueTime
    Type: System.DateTime

    The QueueTime of the job invocation you want details for.

  • minDetailId
    Type: System.Int64

    Specifies the minimum servicing step detail ID. The method returns servicing step details with detailId greater or equal to minDetailId.

  • complete
    Type: System.Boolean%

    When this method returns, contains true if the specified job has completed.

Return Value

Type: System.Collections.Generic.List<ServicingStepDetail>
The log entries.

.NET Framework Security

See Also

Reference

TeamProjectCollectionWebService Class

Microsoft.TeamFoundation.Server.Core.WebServices Namespace