Ejemplo n.º 1
0
 /// <summary>
 /// Lists the transactions for an invoice. Transactions include purchases,
 /// refunds and Azure usage charges.
 /// <see href="https://docs.microsoft.com/en-us/rest/api/billing/" />
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='billingAccountName'>
 /// The ID that uniquely identifies a billing account.
 /// </param>
 /// <param name='invoiceName'>
 /// The ID that uniquely identifies an invoice.
 /// </param>
 public static IPage <Transaction> ListByInvoice(this ITransactionsOperations operations, string billingAccountName, string invoiceName)
 {
     return(operations.ListByInvoiceAsync(billingAccountName, invoiceName).GetAwaiter().GetResult());
 }