Elastacloud.AzureManagement.Fluent.Clients.BlobClient.CheckStorageAccountHasResolved C# (CSharp) Метод

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

Checks to see whether a stroage account has completed a name resolution with an automatic checking timout of 5 minutes
public CheckStorageAccountHasResolved ( int timeoutInSeconds = 300 ) : bool
timeoutInSeconds int
Результат bool
        public bool CheckStorageAccountHasResolved(int timeoutInSeconds = 300)
        {
            // uses a blob command but can be any blob command
            var command = new DeleteBlobCommand(ContainerName, "")
            {
                AccountName = AccountName
            };
            return command.CheckStorageAccountExists(timeoutInSeconds);
        }