Esempio n. 1
0
 /// <summary>
 /// Retrieve the content of runbook identified by runbook name.  (see
 /// http://aka.ms/azureautomationsdk/runbookoperations for more
 /// information)
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.Automation.IRunbookOperations.
 /// </param>
 /// <param name='automationAccount'>
 /// Required. The automation account name.
 /// </param>
 /// <param name='runbookName'>
 /// Required. The runbook name.
 /// </param>
 /// <returns>
 /// The response model for the runbook content operation.
 /// </returns>
 public static Task <RunbookContentResponse> ContentAsync(this IRunbookOperations operations, string automationAccount, string runbookName)
 {
     return(operations.ContentAsync(automationAccount, runbookName, CancellationToken.None));
 }