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
- projectName
Type: System.String
- requestedFor
Type: System.String
- definition
Type: System.String
- skip
Type: System.Nullable<Int32>
- top
Type: System.Nullable<Int32>
Return Value
Type: System.Linq.IQueryable<Build>
builds that fit the query params
.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.