Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Gets or sets a value that indicates whether a conditional failure should be absorbed on a retry attempt for the request.

Namespace:   Microsoft.WindowsAzure.Storage.Blob
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
public Nullable<bool> AbsorbConditionalErrorsOnRetry { get; set; }
 
public:
property Nullable<bool> AbsorbConditionalErrorsOnRetry {
	Nullable<bool> get();
	void set(Nullable<bool> value);
}
 
member AbsorbConditionalErrorsOnRetry : Nullable<bool> with get, set
 
Public Property AbsorbConditionalErrorsOnRetry As Nullable(OfBoolean)

Remarks

This option is used only by the CloudAppendBlob object in the UploadFrom* methods and the BlobWriteStream methods. By default, it is set to false. Set this option to true only for single writer scenarios. Setting this option to true in a multi-writer scenario may lead to corrupted blob data.

Return to top