Пример #1
0
 /// <summary>
 /// Returns the projects in the repository for the branch, for all toolsets
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='branch'>
 /// The branch name
 /// </param>
 /// <param name='os'>
 /// The desired OS for the project scan; normally the same as the app OS.
 /// Possible values include: 'iOS', 'Android', 'Windows', 'macOS'
 /// </param>
 /// <param name='platform'>
 /// The desired platform for the project scan. Possible values include:
 /// 'Objective-C-Swift', 'React-Native', 'Xamarin', 'Java', 'UWP'
 /// </param>
 /// <param name='ownerName'>
 /// The name of the owner
 /// </param>
 /// <param name='appName'>
 /// The name of the application
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <ToolsetProjects> ListToolsetProjectsAsync(this IBuilds operations, string branch, string os, string platform, string ownerName, string appName, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.ListToolsetProjectsWithHttpMessagesAsync(branch, os, platform, ownerName, appName, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }