Microsoft.Azure.Commands.RecoveryServices.Backup.Cmdlets.ServiceClientAdapterNS.ServiceClientAdapter.GetRefreshContainerOperationResultByURL C# (CSharp) Метод

GetRefreshContainerOperationResultByURL() публичный Метод

Gets result of the refresh container operation using the operation tracking URL
public GetRefreshContainerOperationResultByURL ( string operationResultLink ) : Microsoft.Azure.Management.RecoveryServices.Backup.Models.BaseRecoveryServicesJobResponse
operationResultLink string Operation tracking URL
Результат Microsoft.Azure.Management.RecoveryServices.Backup.Models.BaseRecoveryServicesJobResponse
        public BaseRecoveryServicesJobResponse GetRefreshContainerOperationResultByURL(
                string operationResultLink)
        {
            string resourceName = BmsAdapter.GetResourceName();
            string resourceGroupName = BmsAdapter.GetResourceGroupName();

            return BmsAdapter.Client.Containers.GetRefreshOperationResultByURLAsync(
                                     operationResultLink,
                                     BmsAdapter.CmdletCancellationToken).Result;
        }