TableRequestOptions.EncryptionResolver Property (Microsoft.WindowsAzure.Storage.Table)
From Microsoft Windows Azure Storage Blob
C#
C++
F#
VB
TableRequestOptions.EncryptionResolver Property
TableRequestOptions::EncryptionResolver Property
TableRequestOptions.EncryptionResolver Property
TableRequestOptions.EncryptionResolver Property
Gets or sets the delegate to get the value indicating whether or not a property should be encrypted, given the partition key, row key,
and property name.
Namespace:
Microsoft.WindowsAzure.Storage.Table
Assembly:
Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Syntax
C++
public:
property Func<String^, String^, String^, bool>^ EncryptionResolver {
Func<String^, String^, String^, bool>^ get();
void set(Func<String^, String^, String^, bool>^ value);
}
Property Value
Type:
System.Func<String, String, String, Boolean>System::Func<String^, String^, String^, Boolean>^System.Func<String, String, String, Boolean>System.Func(Of String, String, String, Boolean)
Return to top
Gets or sets the delegate to get the value indicating whether or not a property should be encrypted, given the partition key, row key, and property name.
Syntax
C++
public: property Func<String^, String^, String^, bool>^ EncryptionResolver { Func<String^, String^, String^, bool>^ get(); void set(Func<String^, String^, String^, bool>^ value); }