BuildsController.GetBuilds Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Gets all builds, filtered on query params

Namespace:  Microsoft.TeamFoundation.Build.Server.Rest
Assembly:  Microsoft.TeamFoundation.Build.Server (in Microsoft.TeamFoundation.Build.Server.dll)

Syntax

'Declaration
<HttpGetAttribute> _
Public Function GetBuilds ( _
    projectName As String, _
    requestedFor As String, _
    definition As String, _
    skip As Nullable(Of Integer), _
    top As Nullable(Of Integer) _
) As IQueryable(Of Build)
[HttpGetAttribute]
public IQueryable<Build> GetBuilds(
    string projectName,
    string requestedFor,
    string definition,
    Nullable<int> skip,
    Nullable<int> top
)
[HttpGetAttribute]
public:
IQueryable<Build^>^ GetBuilds(
    String^ projectName, 
    String^ requestedFor, 
    String^ definition, 
    Nullable<int> skip, 
    Nullable<int> top
)
[<HttpGetAttribute>]
member GetBuilds : 
        projectName:string * 
        requestedFor:string * 
        definition:string * 
        skip:Nullable<int> * 
        top:Nullable<int> -> IQueryable<Build> 
public function GetBuilds(
    projectName : String, 
    requestedFor : String, 
    definition : String, 
    skip : Nullable<int>, 
    top : Nullable<int>
) : IQueryable<Build>

Parameters

Return Value

Type: System.Linq.IQueryable<Build>
builds that fit the query params

.NET Framework Security

See Also

Reference

BuildsController Class

Microsoft.TeamFoundation.Build.Server.Rest Namespace