Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Gets or sets a value to indicate whether data written and read by the client library should be encrypted.

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

Syntax

 
public Nullable<bool> RequireEncryption { get; set; }
 
public:
property Nullable<bool> RequireEncryption {
	virtual Nullable<bool> get() sealed;
	virtual void set(Nullable<bool> value) sealed;
}
 
abstract RequireEncryption : Nullable<bool> with get, set
override RequireEncryption : Nullable<bool> with get, set
 
Public Property RequireEncryption As Nullable(OfBoolean)

Property Value

Type: System.Nullable<Boolean>System::Nullable<Boolean>System.Nullable<Boolean>System.Nullable(Of Boolean)

Use true to specify that data should be encrypted/decrypted for all transactions; otherwise, false.

Return to top