EN
Dette indhold er ikke tilgængeligt på dit sprog, men her er den engelske version.
0 ud af 1 klassificerede dette som nyttigt - Bedøm dette emne

StorageClientException Class

Represents an exception thrown by the Windows Azure storage client library.

Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
'Brug
Dim instance As StorageClientException

[SerializableAttribute] 
public class StorageClientException : StorageException
/** @attribute SerializableAttribute() */ 
public class StorageClientException extends StorageException
SerializableAttribute 
public class StorageClientException extends StorageException

When the StorageClientException is thrown it indicates that there was a problem with the request the client made to the server. Any timeout related exceptions are automatically retried, and therefore, retrying the operation yourself will almost certainly result in the same exception being thrown. The one exception to this rule is when the ExtendedErrorInformation property indicates that ErrorCode is equal to InternalError.


bool canRetry = true;
while (canRetry) 
{
    try
    {
        // Perform data access operation
    }
    catch (StorageClientException ex)
    {
        if (!ex.ExtendedErrorInformation.ErrorCode.Equals(
            StorageErrorCodeStrings.InternalError.ToString())
        {
            canRetry = false;
        }
        else 
        {
            // Wait before retrying the operation
            System.Threading.Thread.Sleep(1000);
        }
    }
}

System.Object
   System.Exception
     Microsoft.WindowsAzure.StorageClient.StorageException
      Microsoft.WindowsAzure.StorageClient.StorageClientException
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Development Platforms

Windows Vista, Windows 7 and Windows Server 2008

Target Platforms

Syntes du, dette var nyttigt?
(1500 tegn tilbage)
© 2013 Microsoft. Alle rettigheder forbeholdes.
facebook page visit twitter rss feed newsletter