/// <summary> /// Returns a single distribution group for a given distribution group name /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='ownerName'> /// The name of the owner /// </param> /// <param name='appName'> /// The name of the application /// </param> /// <param name='distributionGroupName'> /// The name of the distribution group /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <DistributionGroupResponse> GetAsync(this IDistributionGroups operations, string ownerName, string appName, string distributionGroupName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(ownerName, appName, distributionGroupName, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }