Esempio n. 1
0
 public DiscoveryAction(IActionQueueMarshaller marshaller, EventHandler<ActionEventArgs> statusUpdate,
     List<IProtectAttachment> attachments, bool isEncryptedCollection = false)
     : base(marshaller, statusUpdate)
 {
     Execute(attachments, isEncryptedCollection);
 }
 public UpdateDiscoveryAction(IActionQueueMarshaller marshaller, EventHandler<ActionEventArgs> statusUpdate, ObservableCollection<IProtectAttachment> attachments)
     : base(marshaller, statusUpdate)
 {
     Execute(attachments);
 }
Esempio n. 3
0
 public DecryptionAction(IActionQueueMarshaller marshaller, EventHandler<ActionEventArgs> statusUpdate,
     IProtectAttachment attachment, IContentEncryptionUi ui)
     : base(marshaller, statusUpdate)
 {
     Execute(attachment, ui);
 }
 public RemoveAttachmentsAction(IActionQueueMarshaller marshaller, ObservableCollection<IProtectAttachment> attachments, string recordKey, string id)
     : base(marshaller, null)
 {
     RemoveAttachment(attachments, recordKey, id);
 }
Esempio n. 5
0
 public ApplyAction(IActionQueueMarshaller marshaller, EventHandler<ActionEventArgs> statusUpdate,
     IEnumerable<IWorkshareTask> tasks)
     : base(marshaller, statusUpdate)
 {
     InternalApplyTasks(tasks);
 }