Esempio n. 1
0
        public void Reject(ITransferItem item)
        {
            List <ITransferItem> tempList = new List <ITransferItem>();

            tempList.Add(item);
            Reject(tempList);
        }
Esempio n. 2
0
        public void Accept(string path, ITransferItem item)
        {
            List <ITransferItem> tempList = new List <ITransferItem>();

            tempList.Add(item);
            Accept(path, tempList);
        }
Esempio n. 3
0
 public TransferItemView(ITransferItem item1)
 {
     item       = item1;
     IsAccepted = true;
 }
Esempio n. 4
0
 public void Stop(ITransferItem stoppingItem)
 {
     StopTransfer(stoppingItem.TrId, FileTransferState.StoppedByUser, false);
 }
 public DropCommand(ITransferItem iTransferItem)
 {
     _iTransferItem = iTransferItem;
 }