Esempio n. 1
0
        internal Interop.BackgroundCopyFileInfo[] GetBCFIArray()
        {
            Interop.BackgroundCopyFileInfo[] ret = new Microsoft.Net.BITS.Interop.BackgroundCopyFileInfo[this.Count];
            int i = 0;

            foreach (BackgroundCopyFileInfo fi in this)
            {
                ret[i++] = new Interop.BackgroundCopyFileInfo(fi.RemoteFilePath, fi.LocalFilePath);
            }
            return(ret);
        }
Esempio n. 2
0
 internal BackgroundCopyFileInfo(Interop.BackgroundCopyFileInfo bgfi)
 {
     fi = bgfi;
 }