GetAllAutomationListsAsync() 개인적인 메소드

Get a list of Automations
private GetAllAutomationListsAsync ( int count = 10 ) : Task
count int
리턴 Task
예제 #1
0
 /// <summary>
 /// Get a list of Automations
 /// </summary>
 public async Task <RootAutomation> GetAutomationListAsync(int count = 10)
 {
     return(await overview.GetAllAutomationListsAsync(count));
 }