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