コード例 #1
0
 /// <summary>
 /// Delete Live Output
 /// </summary>
 /// <remarks>
 /// Deletes a live output. Deleting a live output does not delete the asset the
 /// live output is writing to.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group within the Azure subscription.
 /// </param>
 /// <param name='accountName'>
 /// The Media Services account name.
 /// </param>
 /// <param name='liveEventName'>
 /// The name of the live event, maximum length is 32.
 /// </param>
 /// <param name='liveOutputName'>
 /// The name of the live output.
 /// </param>
 public static void Delete(this ILiveOutputsOperations operations, string resourceGroupName, string accountName, string liveEventName, string liveOutputName)
 {
     operations.DeleteAsync(resourceGroupName, accountName, liveEventName, liveOutputName).GetAwaiter().GetResult();
 }