示例#1
0
        public static async Task <QuotaOperationResult> ReleaseQuotaAsync(
            string engagementAccount,
            string quotaName,
            int released)
        {
            Validator.ArgumentNotNullOrEmpty(engagementAccount, nameof(engagementAccount));
            Validator.ArgumentNotNullOrEmpty(quotaName, nameof(quotaName));

            EnsureService();

            return(await service.ReleaseQuotaAsync(
                       engagementAccount,
                       quotaName,
                       released));
        }