/// <summary>
 /// Deletes a phraselist feature from an application.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='azureRegion'>
 /// Supported Azure regions for Cognitive Services endpoints. Possible values
 /// include: 'westus', 'westeurope'
 /// </param>
 /// <param name='appId'>
 /// Format - guid. The application ID.
 /// </param>
 /// <param name='versionId'>
 /// The version ID of the task.
 /// </param>
 /// <param name='phraselistId'>
 /// The ID of the feature to be deleted.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task DeletePhraselistFeatureAsync(this IFeatures operations, AzureRegions azureRegion, string appId, string versionId, int phraselistId, CancellationToken cancellationToken = default(CancellationToken))
 {
     (await operations.DeletePhraselistFeatureWithHttpMessagesAsync(azureRegion, appId, versionId, phraselistId, null, cancellationToken).ConfigureAwait(false)).Dispose();
 }