Ejemplo n.º 1
0
 public static IEnumerable <ProjectTask> EnumerateServiceTaskByService(
     this IServiceTasksOperations ops, string resourceGroupName, string serviceName, string taskType = null)
 {
     return(new PagedEnumerable <ProjectTask>(
                () => ops.List(resourceGroupName, serviceName, taskType),
                link => ops.ListNext(link)));
 }