3

Microsoft の SyncOrchestrator を使用しようとしていますが、うまくいきません。誰かがそれを経験していて、喜んで私を助けてくれますか?

using Microsoft.Synchronization;
using Microsoft.Synchronization.Files;

public static void SyncFileSystemReplicasOneWay(FileSyncProvider sourceProvider, FileSyncProvider destinationProvider, Label progress_label)
    {
       try
       {
            SyncOrchestrator agent = new SyncOrchestrator();
            agent.LocalProvider = sourceProvider;
            agent.RemoteProvider = destinationProvider;
            agent.Direction = SyncDirectionOrder.Upload; // Sync source to destination
            SyncOperationStatistics stats = agent.Synchronize();
       }
       catch { }
    }

agent.Synchronize() を呼び出すと、

InvalidComExceptionError: a com object that has been separated from its underlying rcw cannot be used.

この InvalidComExceptionError の原因を知っている人はいますか? 誰かが以前にこの問題を抱えていましたか? 参照が見つかりませんでした。

4

0 に答える 0