Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the EncryptionServices class.
 /// </summary>
 /// <param name="blob">The encryption function of the blob storage
 /// service.</param>
 public EncryptionServices(EncryptionService blob = default(EncryptionService))
 {
     Blob = blob;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the EncryptionServices class.
 /// </summary>
 /// <param name="blob">The encryption function of the blob storage
 /// service.</param>
 /// <param name="file">The encryption function of the file storage
 /// service.</param>
 /// <param name="table">The encryption function of the table storage
 /// service.</param>
 /// <param name="queue">The encryption function of the queue storage
 /// service.</param>
 public EncryptionServices(EncryptionService blob = default(EncryptionService), EncryptionService file = default(EncryptionService), EncryptionService table = default(EncryptionService), EncryptionService queue = default(EncryptionService))
 {
     Blob  = blob;
     File  = file;
     Table = table;
     Queue = queue;
     CustomInit();
 }