public BaseResult PurgeDqItem(DownloadQueueBaseShipment shipment)
        {
            var client = GenerateDownloadQueueProxy(shipment.EndpointName, shipment.Certificate);

            OperationContext = "PurgeDQItem";
            return(new BaseResult()
            {
                Result = client.PurgeItem(shipment.Username, shipment.Password, shipment.ArchiveReference)
            });
        }
Exemple #2
0
 public void InitizializeMyForm()
 {
     getDqs             = new GetDownloadQueueShipment();
     baseShipment       = new DownloadQueueBaseShipment();
     extShipment        = new DownloadQueueExtendedShipment();
     baseResult         = new BaseResult();
     DqItemBeList       = new DownloadQueueItemBEList();
     ArchivedFormTaskBe = new ArchivedFormTaskDQBE();
     SetUpObjectsForPropertyGrid();
     DqEpFunc = new DownloadQueueEndPointFunctionalityEC2();
     DqEpFunc.ReturnMessageXml += ReturnMessageXmlHandler;
     AssignActions();
 }